summaryrefslogtreecommitdiff
path: root/src/node_modules/inversify/es/utils/exceptions.js
blob: e4589343556edc43e5385896b9fff92973e9631b (plain)
1
2
3
4
5
import * as ERROR_MSGS from "../constants/error_msgs";
export function isStackOverflowExeption(error) {
    return (error instanceof RangeError ||
        error.message === ERROR_MSGS.STACK_OVERFLOW);
}