We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6ba4ec commit ebf3900Copy full SHA for ebf3900
lib/.eslintrc.yaml
@@ -29,6 +29,8 @@ rules:
29
message: "Use `const { Int16Array } = primordials;` instead of the global."
30
- name: Int32Array
31
message: "Use `const { Int32Array } = primordials;` instead of the global."
32
+ - name: Int8Array
33
+ message: "Use `const { Int8Array } = primordials;` instead of the global."
34
- name: JSON
35
message: "Use `const { JSON } = primordials;` instead of the global."
36
- name: Map
lib/internal/util/inspect.js
@@ -15,6 +15,7 @@ const {
15
Float64Array,
16
FunctionPrototypeCall,
17
FunctionPrototypeToString,
18
+ Int8Array,
19
Int16Array,
20
Int32Array,
21
JSONStringify,
0 commit comments