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