(arr, len)
| 41 | } |
| 42 | |
| 43 | function _arrayLikeToArray(arr, len) { |
| 44 | if (len == null || len > arr.length) len = arr.length; |
| 45 | |
| 46 | for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; |
| 47 | |
| 48 | return arr2; |
| 49 | } |
| 50 | |
| 51 | function _createForOfIteratorHelperLoose(o, allowArrayLike) { |
| 52 | var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; |
no outgoing calls
no test coverage detected