@jsonlines/core
Version:
parse and stringify jsonlines files through streams
23 lines (18 loc) • 608 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
require('core-js/modules/es.symbol.description');
const nullValue = Object.create(null);
Reflect.defineProperty(nullValue, Symbol.toStringTag, {
value: Object.prototype.toString.call(null).slice("[object ".length, -"]".length)
});
Reflect.defineProperty(nullValue, Symbol.toPrimitive, {
value: () => null
});
Reflect.defineProperty(nullValue, "toJSON", {
value: () => null
});
Reflect.defineProperty(nullValue, "toString", {
value: () => "null"
});
exports.nullValue = nullValue;
//# sourceMappingURL=null-value.js.map