promise-statics-incorrect-iteration.js 477 B

12345678
  1. 'use strict';
  2. var NativePromiseConstructor = require('../internals/promise-native-constructor');
  3. var checkCorrectnessOfIteration = require('../internals/check-correctness-of-iteration');
  4. var FORCED_PROMISE_CONSTRUCTOR = require('../internals/promise-constructor-detection').CONSTRUCTOR;
  5. module.exports = FORCED_PROMISE_CONSTRUCTOR || !checkCorrectnessOfIteration(function (iterable) {
  6. NativePromiseConstructor.all(iterable).then(undefined, function () { /* empty */ });
  7. });