default-values
Version:
Frequent default values
10 lines (9 loc) • 450 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.E_CB = exports.E_ARR = exports.E_OBJ = exports.EMPTY_CALLBACK = exports.EMPTY_ARRAY = exports.EMPTY_OBJECT = void 0;
exports.EMPTY_OBJECT = Object.freeze({});
exports.E_OBJ = exports.EMPTY_OBJECT;
exports.EMPTY_ARRAY = Object.freeze([]);
exports.E_ARR = exports.EMPTY_ARRAY;
exports.EMPTY_CALLBACK = Object.freeze(() => { });
exports.E_CB = exports.EMPTY_CALLBACK;