Skip to content

wuchangming/force-flow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

force-flow API

force the workflow order

what is force-flow API ?

ffApi(async(callbackStep1, callbackStep2) => {
    await callbackStep1();
    await callbackStep2();
})

❌ Not in order

ffApi(async(callbackStep1, callbackStep2) => {
    await callbackStep2();
    await callbackStep1();
})

❌ Incomplete

ffApi(async(callbackStep1, callbackStep2) => {
    await callbackStep1();
})

About

force the workflow

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published