FLUJOS/VISUALIZACION/node_modules/underscore/amd/isArray.js
2025-11-07 00:06:12 +01:00

9 lines
233 B
JavaScript
Executable file

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;
});