We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 365f53a commit 6324fffCopy full SHA for 6324fff
src/.eslintrc
@@ -6,7 +6,8 @@
6
"globals": {
7
"Promise": true,
8
"Float32Array": true,
9
- "Uint8Array": true
+ "Uint8Array": true,
10
+ "ArrayBuffer": true
11
},
12
"rules": {
13
"strict": [2, "global"],
src/lib/is_array.js
@@ -14,4 +14,4 @@
14
*/
15
module.exports = function isArray(a) {
16
return Array.isArray(a) || ArrayBuffer.isView(a);
17
-}
+};
0 commit comments