9 lines
247 B
JavaScript
Raw Permalink Normal View History

2025-04-23 09:34:08 +08:00
var _setup = require('./_setup.js');
var _tagTester = require('./_tagTester.js');
// Is a given value an array?
// Delegates to ECMA5's native `Array.isArray`.
var isArray = _setup.nativeIsArray || _tagTester('Array');
module.exports = isArray;