Files
2025-12-03 21:28:08 +00:00

6 lines
150 B
JavaScript
Executable File

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