MIF_E31222707/node_modules/collect.js/dist/methods/reverse.js

6 lines
150 B
JavaScript

'use strict';
module.exports = function reverse() {
var collection = [].concat(this.items).reverse();
return new this.constructor(collection);
};