Skip to content
This repository was archived by the owner on Oct 28, 2025. It is now read-only.

Commit 8413896

Browse files
authored
Stage 4 (#69)
1 parent 4c79da4 commit 8413896

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
base64 is a common way to represent arbitrary binary data as ASCII. JavaScript has Uint8Arrays to work with binary data, but no built-in mechanism to encode that data as base64, nor to take base64'd data and produce a corresponding Uint8Arrays. This is a proposal to fix that. It also adds methods for converting between hex strings and Uint8Arrays.
44

5-
It is currently at stage 3 of [the TC39 process](https://tc39.es/process-document/): it is ready for implementations. See [this issue](https://github.com/tc39/proposal-arraybuffer-base64/issues/51) for current status.
5+
It is currently at stage 4 of [the TC39 process](https://tc39.es/process-document/): it is complete and ready to be included in the standard.
66

77
Try it out on [the playground](https://tc39.github.io/proposal-arraybuffer-base64/).
88

playground/index-raw.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<h1>Proposed Support for Base64 in JavaScript</h1>
5050

5151
<h2 id="introduction">Introduction</h2>
52-
<p>This page documents a stage 3 proposal for native base64 and hex encoding and decoding for binary data in JavaScript, and includes a <strong>non-production</strong> polyfill you can experiment with in the browser's console.</p>
52+
<p>This page documents a stage 4 proposal for native base64 and hex encoding and decoding for binary data in JavaScript, and includes a <strong>non-production</strong> polyfill you can experiment with in the browser's console.</p>
5353
<p>The proposal would provide methods for encoding and decoding Uint8Arrays as base64 and hex strings.</p>
5454
<p>Feedback on <a href="https://github.com/tc39/proposal-arraybuffer-base64">the proposal's repository</a> is appreciated.</p>
5555
<p>Specification text for the proposal is available <a href="https://tc39.es/proposal-arraybuffer-base64/spec/">here</a>.</p>

spec.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<pre class="metadata">
44
title: Uint8Array to/from base64
55
status: proposal
6-
stage: 3
6+
stage: 4
77
location: https://github.com/tc39/proposal-arraybuffer-base64
88
copyright: false
99
contributors: Kevin Gibbons

0 commit comments

Comments
 (0)