mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 07:38:25 -04:00
10 lines
233 B
JavaScript
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;
|
|
|
|
});
|