my-idlers/node_modules/collect.js/dist/methods/reverse.js

7 lines
151 B
JavaScript
Raw Normal View History

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