make.js 176 B

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