Skip to content

Commit d1e2184

Browse files
committed
buffer: expose btoa and atob as globals
Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: #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>
1 parent abbd9d9 commit d1e2184

File tree

6 files changed

+67
-6
lines changed

6 files changed

+67
-6
lines changed

.eslintrc.js

+2
Original file line numberDiff line numberDiff line change
@@ -329,5 +329,7 @@ module.exports = {
329329
TextDecoder: 'readable',
330330
queueMicrotask: 'readable',
331331
globalThis: 'readable',
332+
btoa: 'readable',
333+
atob: 'readable',
332334
},
333335
};

doc/api/buffer.md

+4
Original file line numberDiff line numberDiff line change
@@ -3282,6 +3282,8 @@ accessed using `require('buffer')`.
32823282
added: REPLACEME
32833283
-->
32843284

3285+
> Stability: 3 - Legacy. Use `Buffer.from(data, 'base64')` instead.
3286+
32853287
* `data` {any} The Base64-encoded input string.
32863288

32873289
Decodes a string of Base64-encoded data into bytes, and encodes those bytes
@@ -3301,6 +3303,8 @@ and binary data should be performed using `Buffer.from(str, 'base64')` and
33013303
added: REPLACEME
33023304
-->
33033305

3306+
> Stability: 3 - Legacy. Use `buf.toString('base64')` instead.
3307+
33043308
* `data` {any} An ASCII (Latin1) string.
33053309

33063310
Decodes a string into bytes using Latin-1 (ISO-8859), and encodes those bytes

doc/api/globals.md

+20
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,24 @@ This variable may appear to be global but is not. See [`__dirname`][].
146146

147147
This variable may appear to be global but is not. See [`__filename`][].
148148

149+
## `atob(data)`
150+
<!-- YAML
151+
added: REPLACEME
152+
-->
153+
154+
> Stability: 3 - Legacy. Use `Buffer.from(data, 'base64')` instead.
155+
156+
Global alias for [`buffer.atob()`][].
157+
158+
## `btoa(data)`
159+
<!-- YAML
160+
added: REPLACEME
161+
-->
162+
163+
> Stability: 3 - Legacy. Use `buf.toString('base64')` instead.
164+
165+
Global alias for [`buffer.btoa()`][].
166+
149167
## `clearImmediate(immediateObject)`
150168
<!-- YAML
151169
added: v0.9.1
@@ -402,6 +420,8 @@ The object that acts as the namespace for all W3C
402420
[`URL`]: url.md#url_class_url
403421
[`__dirname`]: modules.md#modules_dirname
404422
[`__filename`]: modules.md#modules_filename
423+
[`buffer.atob()`]: buffer.md#buffer_buffer_atob_data
424+
[`buffer.btoa()`]: buffer.md#buffer_buffer_btoa_data
405425
[`clearImmediate`]: timers.md#timers_clearimmediate_immediate
406426
[`clearInterval`]: timers.md#timers_clearinterval_timeout
407427
[`clearTimeout`]: timers.md#timers_cleartimeout_timeout

lib/internal/bootstrap/node.js

+25-6
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ const {
4242
FunctionPrototypeCall,
4343
JSONParse,
4444
ObjectDefineProperty,
45+
ObjectDefineProperties,
4546
ObjectGetPrototypeOf,
4647
ObjectPreventExtensions,
4748
ObjectSetPrototypeOf,
@@ -400,19 +401,37 @@ function setupGlobalProxy() {
400401
}
401402

402403
function setupBuffer() {
403-
const { Buffer } = require('buffer');
404+
const {
405+
Buffer,
406+
atob,
407+
btoa,
408+
} = require('buffer');
404409
const bufferBinding = internalBinding('buffer');
405410

406411
// Only after this point can C++ use Buffer::New()
407412
bufferBinding.setBufferPrototype(Buffer.prototype);
408413
delete bufferBinding.setBufferPrototype;
409414
delete bufferBinding.zeroFill;
410415

411-
ObjectDefineProperty(global, 'Buffer', {
412-
value: Buffer,
413-
enumerable: false,
414-
writable: true,
415-
configurable: true
416+
ObjectDefineProperties(global, {
417+
'Buffer': {
418+
value: Buffer,
419+
enumerable: false,
420+
writable: true,
421+
configurable: true,
422+
},
423+
'atob': {
424+
value: atob,
425+
enumerable: false,
426+
writable: true,
427+
configurable: true,
428+
},
429+
'btoa': {
430+
value: btoa,
431+
enumerable: false,
432+
writable: true,
433+
configurable: true,
434+
},
416435
});
417436
}
418437

test/common/index.js

+7
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,11 @@ const bits = ['arm64', 'mips', 'mipsel', 'ppc64', 's390x', 'x64']
3838
.includes(process.arch) ? 64 : 32;
3939
const hasIntl = !!process.config.variables.v8_enable_i18n_support;
4040

41+
const {
42+
atob,
43+
btoa
44+
} = require('buffer');
45+
4146
// Some tests assume a umask of 0o022 so set that up front. Tests that need a
4247
// different umask will set it themselves.
4348
//
@@ -257,6 +262,8 @@ function platformTimeout(ms) {
257262
}
258263

259264
let knownGlobals = [
265+
atob,
266+
btoa,
260267
clearImmediate,
261268
clearInterval,
262269
clearTimeout,
+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
'use strict';
2+
3+
require('../common');
4+
5+
const { strictEqual } = require('assert');
6+
const buffer = require('buffer');
7+
8+
strictEqual(globalThis.atob, buffer.atob);
9+
strictEqual(globalThis.btoa, buffer.btoa);

0 commit comments

Comments
 (0)