react-kiwi-dropdown
Version:
A minimal, easy-to-use and highly adjustable dropdown component made with ReactJS.
12 lines (9 loc) • 327 B
JavaScript
;
require('../../modules/es.set');
require('../../modules/esnext.set.from');
var path = require('../../internals/path');
var Set = path.Set;
var setFrom = Set.from;
module.exports = function from(source, mapFn, thisArg) {
return setFrom.call(typeof this === 'function' ? this : Set, source, mapFn, thisArg);
};