We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63f4eae commit 0271457Copy full SHA for 0271457
lib/.eslintrc.yaml
@@ -41,6 +41,8 @@ rules:
41
message: "Use `const { Set } = primordials;` instead of the global."
42
- name: Symbol
43
message: "Use `const { Symbol } = primordials;` instead of the global."
44
+ - name: Uint16Array
45
+ message: "Use `const { Uint16Array } = primordials;` instead of the global."
46
- name: WeakMap
47
message: "Use `const { WeakMap } = primordials;` instead of the global."
48
- name: WeakSet
lib/internal/util/inspect.js
@@ -45,6 +45,7 @@ const {
SymbolPrototypeValueOf,
SymbolIterator,
SymbolToStringTag,
+ Uint16Array,
49
uncurryThis,
50
} = primordials;
51
0 commit comments