UNPKG

rxjs

Version:

Reactive Extensions for modern JavaScript

11 lines (10 loc) 275 B
/** PURE_IMPORTS_START ._reduce PURE_IMPORTS_END */ import { reduce } from './reduce'; function toArrayReducer(arr, item, index) { arr.push(item); return arr; } export function toArray() { return reduce(toArrayReducer, []); } //# sourceMappingURL=toArray.js.map