react-kiwi-dropdown
Version:
| Name | Type | Description | | --------------------------- | -------------------- | ----------- | | options | array | | selectedOption | string | | onCha
10 lines (8 loc) • 332 B
JavaScript
;
require('../../modules/es.promise');
require('../../modules/esnext.promise.all-settled');
var Promise = require('../../internals/path').Promise;
var $allSettled = Promise.allSettled;
module.exports = function allSettled(iterable) {
return $allSettled.call(typeof this === 'function' ? this : Promise, iterable);
};