Comparing version 2.1.4-next.f6ee3bd.0 to 2.1.4-next.fbfd179
@@ -178,2 +178,2 @@ /// <reference lib="dom" /> | ||
export { BigIntegers, BinaryPrimitives, BinaryTokens, Deserializer, DeserializerError, DeserializerReason, Numbers, OnUnsupported, RegExps, Serializer, SerializerError, SerializerReason, TypedArray, TypedArrays, deserialize, deserializeWithMetadata, serialize }; | ||
export { BigIntegers, BinaryPrimitives, BinaryTokens, Deserializer, DeserializerError, DeserializerReason, Numbers, type OnUnsupported, RegExps, Serializer, SerializerError, SerializerReason, TypedArray, TypedArrays, deserialize, deserializeWithMetadata, serialize }; |
@@ -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.f6ee3bd.0", | ||
"version": "2.1.4-next.fbfd179", | ||
"description": "Binary Term Format", | ||
@@ -32,22 +32,22 @@ "author": "kyranet <kyradiscord@gmail.com>", | ||
"devDependencies": { | ||
"@commitlint/cli": "^18.4.1", | ||
"@commitlint/config-conventional": "^18.4.0", | ||
"@favware/cliff-jumper": "^2.2.1", | ||
"@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.0", | ||
"@typescript-eslint/eslint-plugin": "^6.10.0", | ||
"@typescript-eslint/parser": "^6.10.0", | ||
"@vitest/coverage-v8": "^0.34.6", | ||
"@sapphire/ts-config": "^5.0.1", | ||
"@types/node": "^20.11.5", | ||
"@typescript-eslint/eslint-plugin": "^7.13.0", | ||
"@typescript-eslint/parser": "^7.13.0", | ||
"@vitest/coverage-v8": "^1.6.0", | ||
"cz-conventional-changelog": "^3.3.0", | ||
"eslint": "^8.53.0", | ||
"eslint-config-prettier": "^9.0.0", | ||
"eslint-plugin-prettier": "^5.0.1", | ||
"lint-staged": "^15.1.0", | ||
"prettier": "^3.0.3", | ||
"tsup": "^7.2.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.7", | ||
"prettier": "^3.3.2", | ||
"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.1" | ||
"packageManager": "yarn@4.3.0" | ||
} |
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
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
221690
2413