MCPcopy
hub / github.com/angular-ui/ui-grid / isArray

Function isArray

lib/test/angular/1.8.0/angular.js:760–762  ·  view source on GitHub ↗

* @ngdoc function * @name angular.isArray * @module ng * @kind function * * @description * Determines if a reference is an `Array`. * * @param {*} value Reference to check. * @returns {boolean} True if `value` is an `Array`.

(arr)

Source from the content-addressed store, hash-verified

758 * @returns {boolean} True if `value` is an `Array`.
759 */
760function isArray(arr) {
761 return Array.isArray(arr) || arr instanceof Array;
762}
763
764/**
765 * @description

Callers 15

isArrayLikeFunction · 0.70
forEachFunction · 0.70
baseExtendFunction · 0.70
copyFunction · 0.70
copyRecurseFunction · 0.70
copyElementFunction · 0.70
equalsFunction · 0.70
parseKeyValueFunction · 0.70
toKeyValueFunction · 0.70
assertArgFnFunction · 0.70
stringifyFunction · 0.70
shallowCopyFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected