Node-Red configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

is-array.js 300B

123456789
  1. 'use strict';
  2. var classof = require('../internals/classof-raw');
  3. // `IsArray` abstract operation
  4. // https://tc39.es/ecma262/#sec-isarray
  5. // eslint-disable-next-line es/no-array-isarray -- safe
  6. module.exports = Array.isArray || function isArray(argument) {
  7. return classof(argument) === 'Array';
  8. };