Skip to content

Commit 3e56274

Browse files
committed
fixup! buffer: add fast api for isAscii & isUtf8
1 parent 8432a57 commit 3e56274

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-buffer-isutf8-isascii-fast-api.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ assert.strictEqual(buffer.isAscii(nonAsciiBuffer), false);
2626
const detachedBuffer = new ArrayBuffer(10);
2727
try {
2828
detachedBuffer.detach();
29-
} catch (e) {
29+
} catch (_e) {
3030
console.log('Skipping detached buffer tests - detach not supported');
3131
}
3232

0 commit comments

Comments
 (0)