diff options
author | Gus Caplan <me@gus.host> | 2018-09-19 10:33:52 -0500 |
---|---|---|
committer | Gus Caplan <me@gus.host> | 2018-09-23 15:57:19 -0500 |
commit | de0441f6f677b338b78752b8fbaac767fdf35075 (patch) | |
tree | 6257215ec115f9c47457bdd109e7ad9b71af7cb3 /.eslintrc.js | |
parent | 59a8324d2793c504fc81a3126478d8c401df314e (diff) | |
download | node-new-de0441f6f677b338b78752b8fbaac767fdf35075.tar.gz |
lib: implement queueMicrotask
PR-URL: https://github.com/nodejs/node/pull/22951
Refs: https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-queuemicrotask
Reviewed-By: Bradley Farias <bradley.meck@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Diffstat (limited to '.eslintrc.js')
-rw-r--r-- | .eslintrc.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.eslintrc.js b/.eslintrc.js index 8aa090e889..50b6d5238b 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -277,6 +277,7 @@ module.exports = { DTRACE_NET_SERVER_CONNECTION: false, DTRACE_NET_STREAM_END: false, TextEncoder: false, - TextDecoder: false + TextDecoder: false, + queueMicrotask: false, }, }; |