Files
Speedtest-Tracker/conf/site/node_modules/collect.js/docs/api/only.md
Henry Whitaker ea5808047f Tweaked gitignore
gitignore removed all composer and npm files, so automated builds would fail
2020-04-12 21:24:03 +01:00

540 B

only()

The only method returns the items in the collection with the specified keys:

const collection = collect({
  id: 12,
  name: 'John Doe',
  email: 'john@doe.com',
  active: true,
});

const filtered = collection.only(['name', 'email']);

filtered.all();

// { name: 'John Doe', email: 'john@doe.com' }
collect([1, 2, 3, 4])
  .only([2, 12])
  .all();

// [2]

For the inverse of only, see the except method.

View source on GitHub