react-kiwi-dropdown
Version:
A minimal, easy-to-use and highly adjustable dropdown component made with ReactJS.
12 lines (10 loc) • 426 B
JavaScript
;
var collectionAddAll = require('../internals/collection-add-all');
var IS_PURE = require('../internals/is-pure');
// `WeakSet.prototype.addAll` method
// https://github.com/tc39/proposal-collection-methods
require('../internals/export')({ target: 'WeakSet', proto: true, real: true, forced: IS_PURE }, {
addAll: function addAll(/* ...elements */) {
return collectionAddAll.apply(this, arguments);
}
});