This commit is contained in:
2022-04-07 18:09:31 +05:30
parent 36ea86d8e6
commit 1c779ef816
14095 changed files with 1769361 additions and 47 deletions
+30
View File
@@ -0,0 +1,30 @@
# `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)