setup-maven-cached/node_modules/underscore/amd/isArray.js

10 lines
233 B
JavaScript
Raw Permalink Normal View History

2022-06-28 16:39:30 +08:00
define(['./_setup', './_tagTester'], function (_setup, _tagTester) {
// Is a given value an array?
// Delegates to ECMA5's native `Array.isArray`.
var isArray = _setup.nativeIsArray || _tagTester('Array');
return isArray;
});