mirror of
https://gitee.com/bimuziyan/ccc-obfuscated-code.git
synced 2026-05-09 12:35:55 +08:00
6 lines
203 B
JavaScript
6 lines
203 B
JavaScript
import * as ERROR_MSGS from "../constants/error_msgs";
|
|
export function isStackOverflowExeption(error) {
|
|
return (error instanceof RangeError ||
|
|
error.message === ERROR_MSGS.STACK_OVERFLOW);
|
|
}
|