@jaisocx/objdata
Version:
ObjData represents the Objects and array and arrays of objects, where no parsing by bytewise chars comparisons are not used (XML and Json are in all text IDEs readable/writable, and use comaparisons of chars), and the instantiating a JavaScript Object ins
11 lines • 358 B
JavaScript
import { ObjDataParser } from "./ObjDataParser.js";
import { ObjDataSerializer } from "./ObjDataSerializer.js";
export class ObjData {
static parse(objDataByteBuf) {
return ObjDataParser.parse(objDataByteBuf);
}
static serialize(anyValue) {
return ObjDataSerializer.serialize(anyValue);
}
}
//# sourceMappingURL=ObjData.js.map