You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1 lines
344 B
1 lines
344 B
{"ast":null,"code":"import { reduce } from './reduce';\n\nfunction toArrayReducer(arr, item, index) {\n if (index === 0) {\n return [item];\n }\n\n arr.push(item);\n return arr;\n}\n\nexport function toArray() {\n return reduce(toArrayReducer, []);\n} //# sourceMappingURL=toArray.js.map","map":null,"metadata":{},"sourceType":"module"}
|