All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.internals.call-with-safe-iteration-closing.js Maven / Gradle / Ivy

The newest version!
'use strict';
var anObject = require('../internals/an-object');
var iteratorClose = require('../internals/iterator-close');

// call something on iterator step with safe closing on error
module.exports = function (iterator, fn, value, ENTRIES) {
  try {
    return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value);
  } catch (error) {
    iteratorClose(iterator, 'throw', error);
  }
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy