mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-21 18:48:37 +00:00
257 B
257 B
unwrap()
The unwrap method will unwrap the given collection:
const collection = collect([1, 2, 3]);
collect().unwrap(collection);
// [1, 2, 3]