UNPKG

@jswalden/streaming-json

Version:

Streaming JSON parsing and stringification for JavaScript/TypeScript

10 lines 372 B
export function CreateDataProperty(obj, key, value) { return Reflect.defineProperty(obj, key, { value, enumerable: true, configurable: true, writable: true }); } export function EnumerableOwnPropertyKeys(obj) { return Object.keys(obj); } export function DeleteProperty(obj, prop) { return Reflect.deleteProperty(obj, prop); } //# sourceMappingURL=object.js.map