mirror of
https://gitee.com/bimuziyan/ccc-obfuscated-code.git
synced 2026-05-16 11:21:02 +08:00
9 lines
330 B
JavaScript
9 lines
330 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var ERROR_MSGS = require("../constants/error_msgs");
|
|
function isStackOverflowExeption(error) {
|
|
return (error instanceof RangeError ||
|
|
error.message === ERROR_MSGS.STACK_OVERFLOW);
|
|
}
|
|
exports.isStackOverflowExeption = isStackOverflowExeption;
|