mirror of
https://github.com/biobulkbende/biobulkbende.org.git
synced 2025-01-27 17:22:25 +00:00
14 lines
317 B
JavaScript
14 lines
317 B
JavaScript
"use strict";
|
|
var reduce_1 = require('./reduce');
|
|
function toArrayReducer(arr, item, index) {
|
|
if (index === 0) {
|
|
return [item];
|
|
}
|
|
arr.push(item);
|
|
return arr;
|
|
}
|
|
function toArray() {
|
|
return reduce_1.reduce(toArrayReducer, []);
|
|
}
|
|
exports.toArray = toArray;
|
|
//# sourceMappingURL=toArray.js.map
|