@alexgyver/bson
v2.0.2
Published
Decode BSON from BSON Arduino library
Readme
bson.js
Распаковщик бинарного JSON для библиотеки BSON.
npm i @alexgyver/bson
const codes = [
'some',
'string',
'constants',
];
let json;
const res = await fetch(...);
try {
json = decodeBson(new Uint8Array(await res.arrayBuffer()), codes);
} catch (e) { }