* Is an object an array? * * @param {Object} object - The object we want to test * @api private
(object)
| 324 | * @api private |
| 325 | */ |
| 326 | function isArray(object) { |
| 327 | |
| 328 | if (Object.prototype.toString.call(object) === '[object Array]') { |
| 329 | return true; |
| 330 | }else { |
| 331 | return false; |
| 332 | } |
| 333 | } |
| 334 | |
| 335 | /** |
| 336 | * Extend object a with the properties of object b. |
no outgoing calls
no test coverage detected
searching dependent graphs…