Files
tryno10/app/code/node_modules/collect.js/docs/api/all.md
T
2022-04-07 18:09:31 +05:30

375 B

all()

The all method returns the underlying array or object represented by the collection:

collect([1, 2, 3]).all();

// [1, 2, 3]
collect({
  firstname: 'Sadio',
  lastname: 'Mané',
}).all();

// {
//   firstname: 'Sadio',
//   lastname: 'Mané',
// }

View source on GitHub