* @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)
| 757 | * @returns {boolean} True if `value` is an `Array`. |
| 758 | */ |
| 759 | function isArray(arr) { |
| 760 | return Array.isArray(arr) || arr instanceof Array; |
| 761 | } |
| 762 | |
| 763 | /** |
| 764 | * @description |
no outgoing calls
no test coverage detected