summaryrefslogtreecommitdiff
path: root/.eslintrc.js
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2020-05-22 18:11:14 -0700
committerJames M Snell <jasnell@gmail.com>2020-06-05 12:21:47 -0700
commit74ca960aac4600953caacd5f250b11a90bd70ee7 (patch)
tree241afade93b93c034e23339896e7386f32c3b3e9 /.eslintrc.js
parent3e2a3007107b7a100794f4e4adbde19263fc7464 (diff)
downloadios-node-v8-74ca960aac4600953caacd5f250b11a90bd70ee7.tar.gz
ios-node-v8-74ca960aac4600953caacd5f250b11a90bd70ee7.tar.bz2
ios-node-v8-74ca960aac4600953caacd5f250b11a90bd70ee7.zip
lib: initial experimental AbortController implementation
AbortController impl based very closely on: https://github.com/mysticatea/abort-controller Marked experimental. Not currently used by any of the existing promise apis. Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: https://github.com/nodejs/node/pull/33527 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index 8279dfc9c4..8542d2e77e 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -280,6 +280,7 @@ module.exports = {
'node-core/no-duplicate-requires': 'error',
},
globals: {
+ AbortController: 'readable',
Atomics: 'readable',
BigInt: 'readable',
BigInt64Array: 'readable',