Dashboard sipadu mbip
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

unwrap.md 257B

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