Comparing version 2.1.4-next.25d0c97.0 to 2.1.4-next.2a6f0f7
@@ -1,2 +0,1 @@ | ||
/// <reference lib="dom" /> | ||
interface OnUnsupported { | ||
@@ -50,3 +49,2 @@ (value: unknown): unknown; | ||
/// <reference lib="dom" /> | ||
declare class Deserializer { | ||
@@ -167,3 +165,5 @@ offset: number; | ||
declare namespace TypedArrays { | ||
const constructors: (new <T extends TypedArray>(...args: any) => T)[]; | ||
const constructors: { | ||
new <T extends TypedArray>(...args: any): T; | ||
}[]; | ||
const typedArrayTags: Map<string, BinaryTokens>; | ||
@@ -170,0 +170,0 @@ const typedArrayTagToConstructor: Map<BinaryTokens, new <T extends TypedArray>(...args: any) => T>; |
@@ -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.25d0c97.0", | ||
"version": "2.1.4-next.2a6f0f7", | ||
"description": "Binary Term Format", | ||
@@ -32,22 +32,22 @@ "author": "kyranet <kyradiscord@gmail.com>", | ||
"devDependencies": { | ||
"@commitlint/cli": "^18.4.3", | ||
"@commitlint/config-conventional": "^18.4.3", | ||
"@favware/cliff-jumper": "^2.2.3", | ||
"@sapphire/eslint-config": "^5.0.3", | ||
"@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.10.6", | ||
"@typescript-eslint/eslint-plugin": "^6.16.0", | ||
"@typescript-eslint/parser": "^6.16.0", | ||
"@vitest/coverage-v8": "^1.1.0", | ||
"@sapphire/ts-config": "^5.0.1", | ||
"@types/node": "^20.11.5", | ||
"@typescript-eslint/eslint-plugin": "^7.13.1", | ||
"@typescript-eslint/parser": "^7.13.1", | ||
"@vitest/coverage-v8": "^1.6.0", | ||
"cz-conventional-changelog": "^3.3.0", | ||
"eslint": "^8.56.0", | ||
"eslint": "^8.57.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-prettier": "^5.1.2", | ||
"lint-staged": "^15.2.0", | ||
"prettier": "^3.1.1", | ||
"tsup": "^8.0.1", | ||
"typedoc": "^0.25.2", | ||
"typescript": "^5.3.3", | ||
"vitest": "^1.1.0" | ||
"eslint-plugin-prettier": "^5.1.3", | ||
"lint-staged": "^15.2.7", | ||
"prettier": "^3.3.3", | ||
"tsup": "^8.1.0", | ||
"typedoc": "^0.26.1", | ||
"typescript": "^5.5.2", | ||
"vitest": "^1.6.0" | ||
}, | ||
@@ -98,3 +98,3 @@ "repository": { | ||
"prettier": "@sapphire/prettier-config", | ||
"packageManager": "yarn@4.0.2" | ||
"packageManager": "yarn@4.3.1" | ||
} |
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
221603
2413