Dashboard sipadu mbip
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

flip.md 380B

flip()

The flip method swaps the collection’s keys with their corresponding values:

const collection = collect({
  name: 'Steven Gerrard',
  number: 8,
});

const flipped = collection.flip();

flipped.all();

// {
//   'Steven Gerrard': 'name',
//   '8': 'number',
// }

View source on GitHub