Files
2022-04-07 18:09:31 +05:30

7 lines
177 B
JavaScript

'use strict';
module.exports = function make() {
var items = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
return new this.constructor(items);
};