react-kiwi-dropdown
Version:
| Name | Type | Description | | --------------------------- | -------------------- | ----------- | | options | array | | selectedOption | string | | onCha
10 lines (8 loc) • 309 B
JavaScript
;
require('../../modules/es.set');
require('../../modules/esnext.set.from');
var Set = require('../../internals/path').Set;
var setFrom = Set.from;
module.exports = function from(source, mapFn, thisArg) {
return setFrom.call(typeof this === 'function' ? this : Set, source, mapFn, thisArg);
};