mapInto.js 150 B

1234567
  1. 'use strict';
  2. module.exports = function mapInto(ClassName) {
  3. return this.map(function (value, key) {
  4. return new ClassName(value, key);
  5. });
  6. };