Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Async await implemented with generators

NotificationsYou must be signed in to change notification settings

mfbx9da4/async-await-with-generators

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Async await implemented with generators. This code is an experiment for showing how async await could be implemented.

Thanks toEli who originally had the idea for async await with generators before promises were a thing.

Usage

constlib=require('./lib')// Some example asynchronous function// The library assumes that all async funcs must have a callback as the last argfunctiondoGet(url,callback){setTimeout(()=>{callback(`<div>${url}</div>`)},1)}// our example function which takes await as a parameterfunction*example(await){for(leti=0;i<5;i++){constres=yieldawait(doGet,[`http://url.com/${i}`]);expect(res).to.equal(`<div>http://url.com/${i}</div>`)}}// invoking our function with the librarylib.async(example)

Test 

npm test

About

Async await implemented with generators

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp