Package Exports
- teleport-javascript
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (teleport-javascript) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
teleport-javascript
A super light and fast JavaScript object (de)serialization that includes Date, BigInt, RegExp, etc.
Installation
$ npm -i teleport-javascript
Usage
const {parse, stringify} = require('teleport-javascript');
const obj = {
key: 'value',
undefined: undefined,
regex: /a-z/gi,
set: new Set([-Infinity, NaN, Infinity]),
bigint: 900719925474099123n,
symbol: Symbol('key')
};
obj.circular = obj;
const stringified = stringify(obj);
// '[{"key":"1","undefined":"_0","regex":"_1","set":"_2","bigint":"_3","symbol":"_4","circular":"0"},"value",["u","R/a-z/gi","S[[\\"_0\\",\\"_1\\",\\"_2\\"],[\\"n-Infinity\\",\\"nNaN\\",\\"nInfinity\\"]]","b900719925474099123","skey"]]'
const parsed = parse(stringified);
// {
// key: 'value',
// undefined: undefined,
// regex: /a-z/gi,
// set: Set { -Infinity, NaN, Infinity },
// bigint: 900719925474099123n,
// symbol: Symbol(key),
// circular: [Circular]
// }
Supported Data Types
- String
- Number (including NaN, Infinity, -Infinity)
- BigInt
- Boolean
- Symbol
- Null
- Undefined
- Array
- Int8Array
- Uint8Array
- Uint8ClampedArray
- Int16Array
- Uint16Array
- Int32Array
- Uint32Array
- Float32Array
- Float64Array
- Object (including circular reference)
- Date
- Buffer
- RegExp
- Map
- Set
Benchmarks
License
ISC