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

package.internals.create-iter-result-object.js Maven / Gradle / Ivy

The newest version!
'use strict';
// `CreateIterResultObject` abstract operation
// https://tc39.es/ecma262/#sec-createiterresultobject
module.exports = function (value, done) {
  return { value: value, done: done };
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy