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

package.internals.get-iterator-direct.js Maven / Gradle / Ivy

The newest version!
'use strict';
// `GetIteratorDirect(obj)` abstract operation
// https://tc39.es/proposal-iterator-helpers/#sec-getiteratordirect
module.exports = function (obj) {
  return {
    iterator: obj,
    next: obj.next,
    done: false
  };
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy