* Clone an array, works for array-like too.
(arrayLike)
| 133 | * Clone an array, works for array-like too. |
| 134 | */ |
| 135 | function cloneArray(arrayLike) { |
| 136 | return Array.prototype.slice.call(arrayLike, 0); |
| 137 | } |
| 138 | /** |
| 139 | * The <strong><code>defineProperty()</code></strong> function provides a |
| 140 | * shortcut to defining a property that cannot be accidentally iterated across. |
no outgoing calls
no test coverage detected