Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2021-03-17 23:11:05 +0300
committerJames M Snell <jasnell@gmail.com>2021-03-25 18:12:52 +0300
commitd1e2184c8ea0362ad695d51fb6409fc1741a227b (patch)
tree174749cd4143b35fedc5b12fb9d7936dec1f655a /.eslintrc.js
parentabbd9d9db3bbffa1230861c8bd326575d0f081cb (diff)
buffer: expose btoa and atob as globals
Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: https://github.com/nodejs/node/pull/37786 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Michaƫl Zasso <targos@protonmail.com>
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index 7574e1b4b6c..28a31d050a6 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -329,5 +329,7 @@ module.exports = {
TextDecoder: 'readable',
queueMicrotask: 'readable',
globalThis: 'readable',
+ btoa: 'readable',
+ atob: 'readable',
},
};