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
+21
View File
@@ -0,0 +1,21 @@
# `macro()`
The macro method lets you register custom methods
```js
collect().macro('uppercase', function () {
return this.map(item => item.toUpperCase());
});
const collection = collect(['a', 'b', 'c']);
collection.uppercase();
collection.all();
// ['A', 'B', 'C']
```
> Note that the `macro` method returns `undefined`, and therefore it is not possible to use it within a chain of methods.
[View source on GitHub](https://github.com/ecrmnn/collect.js/blob/master/src/methods/macro.js)