We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 574fbfb commit 7291d77Copy full SHA for 7291d77
src/CachedKeyDecoder.ts
@@ -73,7 +73,7 @@ export class CachedKeyDecoder implements KeyDecoder {
73
this.miss++;
74
75
const str = utf8DecodeJs(bytes, inputOffset, byteLength);
76
- // Ensure to copy a slice of bytes because the byte may be NodeJS Buffer and Buffer#slice() returns a reference to its internal ArrayBuffer.
+ // Ensure to copy a slice of bytes because the bytes may be a NodeJS Buffer and Buffer#slice() returns a reference to its internal ArrayBuffer.
77
const slicedCopyOfBytes = Uint8Array.prototype.slice.call(bytes, inputOffset, inputOffset + byteLength);
78
this.store(slicedCopyOfBytes, str);
79
return str;
0 commit comments