UNPKG

@cloudpss/ubjson

Version:

Opinionated UBJSON encoder/decoder for CloudPSS.

11 lines 406 B
/** 支持的数据转为 Uint8Array */ export function toUint8Array(data) { if (data == null || typeof data != 'object' || typeof data.byteLength != 'number') { throw new TypeError('Invalid data'); } if (!ArrayBuffer.isView(data)) { return new Uint8Array(data); } return new Uint8Array(data.buffer, data.byteOffset, data.byteLength); } //# sourceMappingURL=utils.js.map