earljs
Version:
Ergonomic, modern and type-safe assertion library
11 lines (10 loc) • 426 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.LOOSE_EQUALITY_OPTIONS = exports.DEFAULT_EQUALITY_OPTIONS = void 0;
exports.DEFAULT_EQUALITY_OPTIONS = {
uniqueNaNs: false,
minusZero: false,
ignorePrototypes: false,
compareErrorStack: false,
};
exports.LOOSE_EQUALITY_OPTIONS = Object.assign(Object.assign({}, exports.DEFAULT_EQUALITY_OPTIONS), { ignorePrototypes: true });
;