@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
25 lines (20 loc) • 541 B
JavaScript
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;
}
}