* @ngdoc function * @name angular.isArray * @function * * @description * Determines if a reference is an `Array`. * * @param {*} value Reference to check. * @returns {boolean} True if `value` is an `Array`.
(value)
| 560 | * @returns {boolean} True if `value` is an `Array`. |
| 561 | */ |
| 562 | function isArray(value) { |
| 563 | return toString.call(value) === '[object Array]'; |
| 564 | } |
| 565 | |
| 566 | |
| 567 | /** |
no outgoing calls
no test coverage detected
searching dependent graphs…