Show More
Commit Description:
add model solution
Commit Description:
add model solution
References:
File last commit:
Show/Diff file:
Action:
node_modules/core-js/fn/weak-set/from.js | 8 lines | 330 B | application/javascript | JavascriptLexer |
move datatable to yarn
r789 'use strict';
require('../../modules/es6.weak-set');
require('../../modules/es7.weak-set.from');
var $WeakSet = require('../../modules/_core').WeakSet;
var $from = $WeakSet.from;
module.exports = function from(source, mapFn, thisArg) {
return $from.call(typeof this === 'function' ? this : $WeakSet, source, mapFn, thisArg);
};