@worker-tools/structured-json
Version:
Stringify and parse JavaScript values according to Structured Clone Algorithm.
48 lines • 1.96 kB
JavaScript
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.encapsulateAsync = exports.encapsulate = exports.revive = exports.fromJSONValue = exports.toJSONValue = exports.fromJSON = exports.toJSONAsync = exports.toJSON = exports.stringifyAsync = exports.stringify = exports.parse = void 0;
// deno-lint-ignore-file no-explicit-any ban-ts-comment
const typeson_js_1 = __importDefault(require("./typeson.js"));
// @ts-ignore
const typeson_registry_1 = require("typeson-registry");
const blob_js_1 = __importDefault(require("./blob.js"));
const file_js_1 = __importDefault(require("./file.js"));
const filelist_js_1 = __importDefault(require("./filelist.js"));
const { Typeson } = typeson_js_1.default;
const structuredCloningThrowingPatched = typeson_registry_1.structuredCloningThrowing
.filter((x) => !x.file && !x.blob)
.concat([blob_js_1.default, file_js_1.default, filelist_js_1.default]);
const Structured = new Typeson().register([structuredCloningThrowingPatched]);
function parse(s) {
return Structured.revive(JSON.parse(s));
}
exports.parse = parse;
function stringify(value) {
return Structured.stringifySync(value);
}
exports.stringify = stringify;
function stringifyAsync(value) {
return Structured.stringifyAsync(value);
}
exports.stringifyAsync = stringifyAsync;
function toJSON(value) {
return Structured.encapsulateSync(value);
}
exports.toJSON = toJSON;
exports.toJSONValue = toJSON;
exports.encapsulate = toJSON;
function toJSONAsync(value) {
return Structured.encapsulateAsync(value);
}
exports.toJSONAsync = toJSONAsync;
exports.encapsulateAsync = toJSONAsync;
function fromJSON(json) {
return Structured.revive(json);
}
exports.fromJSON = fromJSON;
exports.fromJSONValue = fromJSON;
exports.revive = fromJSON;
//# sourceMappingURL=index.js.map
;