项目原始demo,不改动
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
Bu depo arşivlendi. Dosyaları görüntüleyebilir ve klonlayabilirsiniz ama işlem gönderemez ve konu/değişiklik isteği açamazsınız.
 
 
 
 

9 satır
304 B

  1. 'use strict';
  2. require('../../modules/es6.map');
  3. require('../../modules/es7.map.from');
  4. var $Map = require('../../modules/_core').Map;
  5. var $from = $Map.from;
  6. module.exports = function from(source, mapFn, thisArg) {
  7. return $from.call(typeof this === 'function' ? this : $Map, source, mapFn, thisArg);
  8. };