UNPKG

@jsonjoy.com/json-type

Version:

High-performance JSON Pointer implementation

11 lines 586 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.primitives = exports.floats = exports.ints = exports.uints = exports.FLOATS = exports.INTS = exports.UINTS = void 0; exports.UINTS = ['u', 'u8', 'u16', 'u32', 'u64']; exports.INTS = ['i', 'i8', 'i16', 'i32', 'i64', ...exports.UINTS]; exports.FLOATS = ['f', 'f32', 'f64']; exports.uints = new Set(exports.UINTS); exports.ints = new Set(exports.INTS); exports.floats = new Set(exports.FLOATS); exports.primitives = new Set(['nil', 'undef', 'bool', 'num', 'str', 'bin']); //# sourceMappingURL=util.js.map