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.

14 lines
348 B

4 years ago
  1. # `dump()`
  2. The dump method outputs the results at that moment and then continues processing:
  3. ```js
  4. collect([1, 2, 3, 4])
  5. .dump()
  6. .map(item => item * 2)
  7. .dump();
  8. // Collection { items: [ 1, 2, 3, 4 ] }
  9. // Collection { items: [ 2, 4, 6, 8 ] }
  10. ```
  11. [View source on GitHub](https://github.com/ecrmnn/collect.js/blob/master/src/methods/dump.js)