Usage
:warning: Depending on your environment, the code may require
regeneratorRuntime
to be defined, for instance by importing regenerator-runtime/runtime.
First, require the polyfill at the entry point of your application
require( 'regenerator-runtime/runtime' ) ;
// or
import 'regenerator-runtime/runtime.js' ;
Then, import the library where needed
const next = require( '@iterable-iterator/next' ) ;
// or
import * as next from '@iterable-iterator/next' ;
Examples
More examples in the test files.