mirror of
https://gitee.com/bimuziyan/ccc-obfuscated-code.git
synced 2026-05-08 12:05:58 +08:00
10 lines
409 B
JavaScript
10 lines
409 B
JavaScript
define(["require", "exports", "../constants/error_msgs"], function (require, exports, ERROR_MSGS) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
function isStackOverflowExeption(error) {
|
|
return (error instanceof RangeError ||
|
|
error.message === ERROR_MSGS.STACK_OVERFLOW);
|
|
}
|
|
exports.isStackOverflowExeption = isStackOverflowExeption;
|
|
});
|