Skip to content

Commit

Permalink
Merge pull request #454 from atomiks/defer
Browse files Browse the repository at this point in the history
[ADD: `defer.md`] defer
  • Loading branch information
Chalarangelo committed Jan 2, 2018
2 parents 26d2348 + 86f3f70 commit a8b1994
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
19 changes: 19 additions & 0 deletions snippets/defer.md
@@ -0,0 +1,19 @@
### defer

Defers invoking a function until the current call stack has cleared.

Use `setTimeout()` with a timeout of 1ms to add a new event to the browser event queue and allow the rendering engine to complete its work. Use the spread (`...`) operator to supply the function with an arbitrary number of arguments.

```js
const defer = (fn, ...args) => setTimeout(fn, 1, ...args);
```

```js
// Example A:
defer(console.log, 'a'), console.log('b'); // logs 'b' then 'a'

// Example B:
document.querySelector('#someElement').innerHTML = 'Hello';
longRunningFunction(); // the browser will not update the HTML until this has finished
defer(longRunningFunction); // the browser will update the HTML then run the function
```
1 change: 1 addition & 0 deletions tag_database
Expand Up @@ -23,6 +23,7 @@ countVowels:string
currentURL:browser
curry:function
deepFlatten:array
defer:function
detectDeviceType:browser
difference:array
differenceWith:array
Expand Down

0 comments on commit a8b1994

Please sign in to comment.