The WindowBase64
helper contains utility methods to convert data to and from base64, a binary-to-text encoding scheme. For example it is used in data URIs.
There is no object of this type, though the context object, either the Window
for regular browsing scope, or the WorkerGlobalScope
for workers, implements it.
Properties
This helper neither defines nor inherits any properties.
Methods
This helper does not inherit any methods.
WindowBase64.atob()
- Decodes a string of data which has been encoded using base-64 encoding.
WindowBase64.btoa()
- Creates a base-64 encoded ASCII string from a string of binary data.
Specifications
Specification | Status | Comment |
---|---|---|
HTML Living Standard ΠΠΏΡΠ΅Π΄Π΅Π»Π΅Π½ΠΈΠ΅ 'WindowBase64' Π² ΡΡΠΎΠΉ ΡΠΏΠ΅ΡΠΈΡΠΈΠΊΠ°ΡΠΈΠΈ. |
ΠΠΈΠ²ΠΎΠΉ ΡΡΠ°Π½Π΄Π°ΡΡ | No change since the latest snapshot, HTML 5.1. |
HTML 5.1 ΠΠΏΡΠ΅Π΄Π΅Π»Π΅Π½ΠΈΠ΅ 'WindowBase64' Π² ΡΡΠΎΠΉ ΡΠΏΠ΅ΡΠΈΡΠΈΠΊΠ°ΡΠΈΠΈ. |
Π Π΅ΠΊΠΎΠΌΠ΅Π½Π΄Π°ΡΠΈΡ | Snapshot of HTML Living Standard. No change. |
HTML5 ΠΠΏΡΠ΅Π΄Π΅Π»Π΅Π½ΠΈΠ΅ 'WindowBase64' Π² ΡΡΠΎΠΉ ΡΠΏΠ΅ΡΠΈΡΠΈΠΊΠ°ΡΠΈΠΈ. |
Π Π΅ΠΊΠΎΠΌΠ΅Π½Π΄Π°ΡΠΈΡ | Snapshot of HTML Living Standard. Creation of WindowBase64 (properties where on the target before it). |
Browser compatibility
We're converting our compatibility data into a machine-readable JSON format.
This compatibility table still uses the old format,
because we haven't yet converted the data it contains.
Find out how you can help!
Feature | Firefox (Gecko) | Chrome | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 1.0 (1.7 ΠΈΠ»ΠΈ ΡΠ°Π½Π΅Π΅) [1] | (ΠΠ°) | 10.0 | (ΠΠ°) | (ΠΠ°) |
Feature | Firefox Mobile (Gecko) | Android | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | 1.0 (1) | (ΠΠ°) | (ΠΠ°) | (ΠΠ°) | (ΠΠ°) |
[1] atob()
is also available to XPCOM components implemented in JavaScript, even though Window
is not the global object in components.