diff --git a/README.md b/README.md index 7b5f78b..7041ee3 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ 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. -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. +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. Try it out on [the playground](https://tc39.github.io/proposal-arraybuffer-base64/). diff --git a/playground/index-raw.html b/playground/index-raw.html index 1f03f82..0ba009d 100644 --- a/playground/index-raw.html +++ b/playground/index-raw.html @@ -49,7 +49,7 @@

Proposed Support for Base64 in JavaScript

Introduction

-

This page documents a stage 3 proposal for native base64 and hex encoding and decoding for binary data in JavaScript, and includes a non-production polyfill you can experiment with in the browser's console.

+

This page documents a stage 4 proposal for native base64 and hex encoding and decoding for binary data in JavaScript, and includes a non-production polyfill you can experiment with in the browser's console.

The proposal would provide methods for encoding and decoding Uint8Arrays as base64 and hex strings.

Feedback on the proposal's repository is appreciated.

Specification text for the proposal is available here.

diff --git a/spec.html b/spec.html index 8d09c00..9e90903 100644 --- a/spec.html +++ b/spec.html @@ -3,7 +3,7 @@
 title: Uint8Array to/from base64
 status: proposal
-stage: 3
+stage: 4
 location: https://github.com/tc39/proposal-arraybuffer-base64
 copyright: false
 contributors: Kevin Gibbons