0
0
mirror of https://github.com/honojs/hono.git synced 2024-12-01 10:51:01 +00:00
hono/deno_dist/utils/encode.ts

51 lines
1.5 KiB
TypeScript
Raw Normal View History

2022-07-02 06:09:45 +00:00
export const encodeBase64 = (str: string): string => {
if (str === null) {
throw new TypeError('1st argument of "encodeBase64" should not be null.')
}
const encoder = new TextEncoder()
const bytes = encoder.encode(str)
return btoa(String.fromCharCode(...bytes))
2022-07-02 06:09:45 +00:00
}
export const decodeBase64 = (str: string): string => {
if (str === null) {
throw new TypeError('1st argument of "decodeBase64" should not be null.')
}
const text = atob(str)
const bytes = new Uint8Array(text.split('').map((c) => c.charCodeAt(0)))
const decoder = new TextDecoder()
return decoder.decode(bytes)
2022-07-02 06:09:45 +00:00
}
export const encodeBase64URL = (str: string): string => {
return encodeBase64(str).replace(/=/g, '').replace(/\+/g, '-').replace(/\//g, '_')
}
export const decodeBase64URL = (str: string): string => {
const pad = (s: string) => {
const diff = s.length % 4
if (diff === 2) {
return `${s}==`
}
if (diff === 3) {
return `${s}=`
}
return s
}
return decodeBase64(pad(str).replace(/-/g, '+').replace('_', '/'))
}
export const utf8ToUint8Array = (str: string): Uint8Array => {
const encoder = new TextEncoder()
return encoder.encode(str)
}
export const arrayBufferToBase64 = async (buf: ArrayBuffer): Promise<string> => {
return btoa(String.fromCharCode(...new Uint8Array(buf)))
2022-07-02 06:09:45 +00:00
}
export const arrayBufferToBase64URL = async (buf: ArrayBuffer) => {
return (await arrayBufferToBase64(buf)).replace(/=/g, '').replace(/\+/g, '-').replace(/\//g, '_')
}