@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
15 lines • 535 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ObjData = void 0;
const ObjDataParser_js_1 = require("./ObjDataParser.js");
const ObjDataSerializer_js_1 = require("./ObjDataSerializer.js");
class ObjData {
static parse(objDataByteBuf) {
return ObjDataParser_js_1.ObjDataParser.parse(objDataByteBuf);
}
static serialize(anyValue) {
return ObjDataSerializer_js_1.ObjDataSerializer.serialize(anyValue);
}
}
exports.ObjData = ObjData;
//# sourceMappingURL=ObjData.js.map