Files
rspade_system/node_modules/collect.js/docs/api/unwrap.md
2025-12-03 21:28:08 +00:00

257 B
Executable File

unwrap()

The unwrap method will unwrap the given collection:

const collection = collect([1, 2, 3]);

collect().unwrap(collection);

// [1, 2, 3]

View source on GitHub