first commit
This commit is contained in:
commit
eb2f504652
32490 changed files with 5731109 additions and 0 deletions
12
node_modules/core-js/internals/call-with-safe-iteration-closing.js
generated
vendored
Normal file
12
node_modules/core-js/internals/call-with-safe-iteration-closing.js
generated
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
'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);
|
||||
}
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue