Browse Source

fnDOM => fnDom

transpile
Luke Childs 8 years ago
parent
commit
08d8538f04
  1. 4
      README.md

4
README.md

@ -36,9 +36,9 @@ This allows you to specify complex async control flow in simple readable code:
```js
fetch('/my-badass-api.json')
.then(getSomeProcessingDoneWhileWaitingForDOM)
.then(getSomeProcessingDoneWhileWaitingForDom)
.then(whenDomReady.resume())
.then(injectDataIntoDOM);
.then(injectDataIntoDom);
```
## Pure usage

Loading…
Cancel
Save