Note: This feature is only available in Web Workers.
The atob() method of the WorkerGlobalScope interface decodes a string of data which has been encoded using Base64 encoding. You can use the WorkerGlobalScope.btoa() method to encode and transmit data which may otherwise cause communication problems, then transmit it and use the atob() method to decode the data again. For example, you can encode, transmit, and decode control characters such as ASCII values 0 through 31.
atob(encodedData)encodedDataA binary string (i.e., a string in which each character in the string is treated as a byte of binary data) containing base64-encoded data.
An ASCII string containing decoded data from encodedData.
InvalidCharacterError DOMExceptionThrown if encodedData is not valid base64.
const encodedData = self.btoa("Hello, world"); // encode a string
const decodedData = self.atob(encodedData); // decode the stringatob is available in core-jsdata URLsWindow.atob(): the same method, but in window scopes.WorkerGlobalScope.btoa()Uint8Array.fromBase64()