* @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)
| 391 | * @returns {boolean} True if `value` is an `Array`. |
| 392 | */ |
| 393 | function isArray(value) { |
| 394 | return toString.apply(value) == '[object Array]'; |
| 395 | } |
| 396 | |
| 397 | |
| 398 | /** |
no test coverage detected