* @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)
| 740 | * @returns {boolean} True if `value` is an `Array`. |
| 741 | */ |
| 742 | function isArray(arr) { |
| 743 | return Array.isArray(arr) || arr instanceof Array; |
| 744 | } |
| 745 | |
| 746 | /** |
| 747 | * @description |
no outgoing calls
no test coverage detected