UNPKG
base64-js
Version:
latest (1.5.1)
1.5.1
1.5.0
1.3.1
1.3.0
1.2.3
1.2.2
1.2.1
1.2.0
1.1.2
1.1.1
1.1.0
1.0.4
1.0.3
1.0.2
1.0.1
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Base64 encoding/decoding in pure JS
github.com/beatgammit/base64-js
beatgammit/base64-js
base64-js
/
index.d.ts
4 lines
(3 loc)
•
161 B
TypeScript
View Raw
1
2
3
4
export
function
byteLength
(
b64
:
string
):
number
;
export
function
toByteArray
(
b64
:
string
):
Uint8Array
;
export
function
fromByteArray
(
uint8
:
Uint8Array
):
string
;