a5a0b1c7b3baf90c132f8e7c9908ad50638600b75afe3a3ebfb606c545d67fd2cb38c59a86a8eccaa7bceda920e643292825ebcfb0b0187b4f22f625180f30 336 B

123456789
  1. import { reduce } from './reduce';
  2. import { operate } from '../util/lift';
  3. var arrReducer = function (arr, value) { return (arr.push(value), arr); };
  4. export function toArray() {
  5. return operate(function (source, subscriber) {
  6. reduce(arrReducer, [])(source).subscribe(subscriber);
  7. });
  8. }
  9. //# sourceMappingURL=toArray.js.map