ship-gis/node_modules/underscore/amd/isArray.js

10 lines
233 B
JavaScript
Raw Normal View 히스토리

2026-01-22 09:14:01 +09: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;
});