Skip to content

Instantly share code, notes, and snippets.

@barneycarroll
Last active September 18, 2017 06:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save barneycarroll/19ee83a1a538007950e1553f1bb3436f to your computer and use it in GitHub Desktop.
Save barneycarroll/19ee83a1a538007950e1553f1bb3436f to your computer and use it in GitHub Desktop.
Fold left for generators
export default iterator =>
function * (cursor) {
while(cursor = iterator(cursor))
cursor = yield(cursor)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment