Dashboard sipadu mbip
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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