Files
codeql-action/node_modules/isarray/index.js
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
132 B
JavaScript
Raw Normal View History

2023-01-18 20:50:03 +00:00
var toString = {}.toString;
module.exports = Array.isArray || function (arr) {
return toString.call(arr) == '[object Array]';
};