@safejs/serializer
Version:
Serializer is a superset of JSON that includes recursive objects, dates, regular expressions, functions and others which you also can expand by yourself
8 lines • 319 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.negativeInfinitySerializer = void 0;
exports.negativeInfinitySerializer = {
determine: (v) => v === Number.NEGATIVE_INFINITY,
deserialize: () => Number.NEGATIVE_INFINITY,
};
//# sourceMappingURL=negative-infinity.js.map
;