@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
22 lines • 639 B
JavaScript
import { ObjDataConstants } from "./ObjDataConstants";
export class ObjDataHelpingProps {
lengthAll;
datatype;
numberValueUnit;
propsAmount;
propertyNameLength;
propertyNameStart;
propertyValueLength;
propertyValueStart;
constructor() {
this.lengthAll = 0;
this.datatype = 0;
this.numberValueUnit = 0;
this.propsAmount = 0;
this.propertyNameLength = 0;
this.propertyNameStart = ObjDataConstants.FIELDS_POINTERS.PROPERTY_NAME_START;
this.propertyValueLength = 0;
this.propertyValueStart = 0;
}
}
//# sourceMappingURL=ObjDataTypes.js.map