--- a/tests/src/performance.seq.test.ts +++ b/tests/src/performance.seq.test.ts @@ -105,10 +105,6 @@ return tokensCount; }; -function sizeOfProperty(prop: IProperty) { - return sizeOfEncodedStr(prop.key) + sizeOfEncodedStr(prop.value!); -} - function sizeOfInt(i: number) { if(i < 0 || i > 0xffffffff) throw new Error('out of range'); if(i < 0b11_1111) {