We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c449f41 commit 9222852Copy full SHA for 9222852
test/parallel/test-fs-write.js
@@ -37,17 +37,20 @@ const constants = fs.constants;
37
38
const {
39
createExternalizableString,
40
+ createExternalizableTwoByteString,
41
externalizeString,
42
isOneByteString,
43
} = globalThis;
44
45
assert.notStrictEqual(createExternalizableString, undefined);
46
+assert.notStrictEqual(createExternalizableTwoByteString, undefined);
47
assert.notStrictEqual(externalizeString, undefined);
48
assert.notStrictEqual(isOneByteString, undefined);
49
50
// Account for extra globals exposed by --expose_externalize_string.
51
common.allowGlobals(
52
53
54
55
56
globalThis.x,
0 commit comments