fd22b0bf58
V2 (Laravel re-make)
7 lines
151 B
JavaScript
Vendored
7 lines
151 B
JavaScript
Vendored
'use strict';
|
|
|
|
module.exports = function reverse() {
|
|
var collection = [].concat(this.items).reverse();
|
|
|
|
return new this.constructor(collection);
|
|
}; |