source: node_modules/core-js-pure/internals/promise-statics-incorrect-iteration.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 477 bytes
Line 
1'use strict';
2var NativePromiseConstructor = require('../internals/promise-native-constructor');
3var checkCorrectnessOfIteration = require('../internals/check-correctness-of-iteration');
4var FORCED_PROMISE_CONSTRUCTOR = require('../internals/promise-constructor-detection').CONSTRUCTOR;
5
6module.exports = FORCED_PROMISE_CONSTRUCTOR || !checkCorrectnessOfIteration(function (iterable) {
7 NativePromiseConstructor.all(iterable).then(undefined, function () { /* empty */ });
8});
Note: See TracBrowser for help on using the repository browser.