Files
conference-room-booking-system/frontend/node_modules/underscore/amd/isArray.js
2025-08-20 21:01:11 -04:00

10 lines
233 B
JavaScript

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