You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
540 B
30 lines
540 B
# `only()`
|
|
|
|
The only method returns the items in the collection with the specified keys:
|
|
|
|
```js
|
|
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' }
|
|
```
|
|
|
|
```js
|
|
collect([1, 2, 3, 4])
|
|
.only([2, 12])
|
|
.all();
|
|
|
|
// [2]
|
|
```
|
|
|
|
> For the inverse of `only`, see the `except` method.
|
|
|
|
[View source on GitHub](https://github.com/ecrmnn/collect.js/blob/master/src/methods/only.js) |