Comparing version
@@ -130,14 +130,8 @@ "use strict"; | ||
let ret = ""; | ||
if (integer & g) | ||
ret += "g"; | ||
if (integer & i) | ||
ret += "i"; | ||
if (integer & m) | ||
ret += "m"; | ||
if (integer & y) | ||
ret += "y"; | ||
if (integer & u) | ||
ret += "u"; | ||
if (integer & s) | ||
ret += "s"; | ||
if (integer & g) ret += "g"; | ||
if (integer & i) ret += "i"; | ||
if (integer & m) ret += "m"; | ||
if (integer & y) ret += "y"; | ||
if (integer & u) ret += "u"; | ||
if (integer & s) ret += "s"; | ||
return ret; | ||
@@ -178,6 +172,4 @@ } | ||
]; | ||
if (typeof BigInt64Array === "function") | ||
TypedArrays2.constructors.push(BigInt64Array); | ||
if (typeof BigUint64Array === "function") | ||
TypedArrays2.constructors.push(BigUint64Array); | ||
if (typeof BigInt64Array === "function") TypedArrays2.constructors.push(BigInt64Array); | ||
if (typeof BigUint64Array === "function") TypedArrays2.constructors.push(BigUint64Array); | ||
TypedArrays2.typedArrayTags = new Map( | ||
@@ -540,10 +532,7 @@ TypedArrays2.constructors.map( | ||
parseObject(value) { | ||
if (value === null) | ||
return this.parseValueNull(); | ||
if (value === null) return this.parseValueNull(); | ||
const id = this._objectIDs.get(value); | ||
if (typeof id === "number") | ||
return this.parseValueReference(id); | ||
if (typeof id === "number") return this.parseValueReference(id); | ||
this._objectIDs.set(value, this._objectIDs.size); | ||
if (Array.isArray(value)) | ||
return this.parseValueArray(value); | ||
if (Array.isArray(value)) return this.parseValueArray(value); | ||
const tag = Object.prototype.toString.call(value); | ||
@@ -657,6 +646,4 @@ switch (tag) { | ||
const typedArrayTag = TypedArrays.typedArrayTags.get(tag); | ||
if (typedArrayTag) | ||
this.writeValueTypedArray(value, typedArrayTag); | ||
else | ||
this.parseValueObjectLiteral(value); | ||
if (typedArrayTag) this.writeValueTypedArray(value, typedArrayTag); | ||
else this.parseValueObjectLiteral(value); | ||
} | ||
@@ -728,6 +715,4 @@ parseValueReference(value) { | ||
if (value % 1 === 0) { | ||
if (value >= MIN_INT8 && value <= MAX_INT8) | ||
return sign ? 9 /* SignedByte */ : 8 /* UnsignedByte */; | ||
if (value >= MIN_INT32 && value <= MAX_INT32) | ||
return sign ? 11 /* SignedInt32 */ : 10 /* UnsignedInt32 */; | ||
if (value >= MIN_INT8 && value <= MAX_INT8) return sign ? 9 /* SignedByte */ : 8 /* UnsignedByte */; | ||
if (value >= MIN_INT32 && value <= MAX_INT32) return sign ? 11 /* SignedInt32 */ : 10 /* UnsignedInt32 */; | ||
} | ||
@@ -758,4 +743,3 @@ return sign ? 13 /* SignedFloat64 */ : 12 /* UnsignedFloat64 */; | ||
const deserializer = new Deserializer(buffer); | ||
if (offset !== -1) | ||
deserializer.offset = offset; | ||
if (offset !== -1) deserializer.offset = offset; | ||
const value = deserializer.read(); | ||
@@ -768,4 +752,3 @@ deserializer.clean(); | ||
const deserializer = new Deserializer(buffer); | ||
if (offset !== -1) | ||
deserializer.offset = offset; | ||
if (offset !== -1) deserializer.offset = offset; | ||
const value = deserializer.read(); | ||
@@ -772,0 +755,0 @@ const bufferOffset = deserializer.offset; |
@@ -130,14 +130,8 @@ "use strict"; | ||
let ret = ""; | ||
if (integer & g) | ||
ret += "g"; | ||
if (integer & i) | ||
ret += "i"; | ||
if (integer & m) | ||
ret += "m"; | ||
if (integer & y) | ||
ret += "y"; | ||
if (integer & u) | ||
ret += "u"; | ||
if (integer & s) | ||
ret += "s"; | ||
if (integer & g) ret += "g"; | ||
if (integer & i) ret += "i"; | ||
if (integer & m) ret += "m"; | ||
if (integer & y) ret += "y"; | ||
if (integer & u) ret += "u"; | ||
if (integer & s) ret += "s"; | ||
return ret; | ||
@@ -178,6 +172,4 @@ } | ||
]; | ||
if (typeof BigInt64Array === "function") | ||
TypedArrays2.constructors.push(BigInt64Array); | ||
if (typeof BigUint64Array === "function") | ||
TypedArrays2.constructors.push(BigUint64Array); | ||
if (typeof BigInt64Array === "function") TypedArrays2.constructors.push(BigInt64Array); | ||
if (typeof BigUint64Array === "function") TypedArrays2.constructors.push(BigUint64Array); | ||
TypedArrays2.typedArrayTags = new Map( | ||
@@ -540,10 +532,7 @@ TypedArrays2.constructors.map( | ||
parseObject(value) { | ||
if (value === null) | ||
return this.parseValueNull(); | ||
if (value === null) return this.parseValueNull(); | ||
const id = this._objectIDs.get(value); | ||
if (typeof id === "number") | ||
return this.parseValueReference(id); | ||
if (typeof id === "number") return this.parseValueReference(id); | ||
this._objectIDs.set(value, this._objectIDs.size); | ||
if (Array.isArray(value)) | ||
return this.parseValueArray(value); | ||
if (Array.isArray(value)) return this.parseValueArray(value); | ||
const tag = Object.prototype.toString.call(value); | ||
@@ -657,6 +646,4 @@ switch (tag) { | ||
const typedArrayTag = TypedArrays.typedArrayTags.get(tag); | ||
if (typedArrayTag) | ||
this.writeValueTypedArray(value, typedArrayTag); | ||
else | ||
this.parseValueObjectLiteral(value); | ||
if (typedArrayTag) this.writeValueTypedArray(value, typedArrayTag); | ||
else this.parseValueObjectLiteral(value); | ||
} | ||
@@ -728,6 +715,4 @@ parseValueReference(value) { | ||
if (value % 1 === 0) { | ||
if (value >= MIN_INT8 && value <= MAX_INT8) | ||
return sign ? 9 /* SignedByte */ : 8 /* UnsignedByte */; | ||
if (value >= MIN_INT32 && value <= MAX_INT32) | ||
return sign ? 11 /* SignedInt32 */ : 10 /* UnsignedInt32 */; | ||
if (value >= MIN_INT8 && value <= MAX_INT8) return sign ? 9 /* SignedByte */ : 8 /* UnsignedByte */; | ||
if (value >= MIN_INT32 && value <= MAX_INT32) return sign ? 11 /* SignedInt32 */ : 10 /* UnsignedInt32 */; | ||
} | ||
@@ -758,4 +743,3 @@ return sign ? 13 /* SignedFloat64 */ : 12 /* UnsignedFloat64 */; | ||
const deserializer = new Deserializer(buffer); | ||
if (offset !== -1) | ||
deserializer.offset = offset; | ||
if (offset !== -1) deserializer.offset = offset; | ||
const value = deserializer.read(); | ||
@@ -768,4 +752,3 @@ deserializer.clean(); | ||
const deserializer = new Deserializer(buffer); | ||
if (offset !== -1) | ||
deserializer.offset = offset; | ||
if (offset !== -1) deserializer.offset = offset; | ||
const value = deserializer.read(); | ||
@@ -772,0 +755,0 @@ const bufferOffset = deserializer.offset; |
{ | ||
"name": "binarytf", | ||
"version": "2.1.4-next.73cdbd0.0", | ||
"version": "2.1.4-next.74c9f1a", | ||
"description": "Binary Term Format", | ||
@@ -32,22 +32,22 @@ "author": "kyranet <kyradiscord@gmail.com>", | ||
"devDependencies": { | ||
"@commitlint/cli": "^18.4.2", | ||
"@commitlint/config-conventional": "^18.4.2", | ||
"@favware/cliff-jumper": "^2.2.3", | ||
"@sapphire/eslint-config": "^5.0.2", | ||
"@commitlint/cli": "^19.3.0", | ||
"@commitlint/config-conventional": "^19.2.2", | ||
"@favware/cliff-jumper": "^4.0.2", | ||
"@sapphire/eslint-config": "^5.0.5", | ||
"@sapphire/prettier-config": "^2.0.0", | ||
"@sapphire/ts-config": "^5.0.0", | ||
"@types/node": "^20.9.2", | ||
"@typescript-eslint/eslint-plugin": "^6.11.0", | ||
"@typescript-eslint/parser": "^6.11.0", | ||
"@vitest/coverage-v8": "^0.34.6", | ||
"@sapphire/ts-config": "^5.0.1", | ||
"@types/node": "^20.11.5", | ||
"@typescript-eslint/eslint-plugin": "^7.12.0", | ||
"@typescript-eslint/parser": "^7.12.0", | ||
"@vitest/coverage-v8": "^1.6.0", | ||
"cz-conventional-changelog": "^3.3.0", | ||
"eslint": "^8.54.0", | ||
"eslint-config-prettier": "^9.0.0", | ||
"eslint-plugin-prettier": "^5.0.1", | ||
"lint-staged": "^15.1.0", | ||
"prettier": "^3.1.0", | ||
"tsup": "^7.3.0", | ||
"typedoc": "^0.25.2", | ||
"typescript": "^5.2.2", | ||
"vitest": "^0.34.6" | ||
"eslint": "^8.57.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-prettier": "^5.1.3", | ||
"lint-staged": "^15.2.5", | ||
"prettier": "^3.3.1", | ||
"tsup": "^8.1.0", | ||
"typedoc": "^0.25.13", | ||
"typescript": "^5.4.5", | ||
"vitest": "^1.6.0" | ||
}, | ||
@@ -98,3 +98,3 @@ "repository": { | ||
"prettier": "@sapphire/prettier-config", | ||
"packageManager": "yarn@4.0.2" | ||
"packageManager": "yarn@4.2.2" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
221690
-0.15%2413
-2.07%