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.
496 B
496 B
macro()
The macro method lets you register custom methods
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 returnsundefined
, and therefore it is not possible to use it within a chain of methods.