mirror of
https://github.com/honojs/hono.git
synced 2024-12-01 10:51:01 +00:00
51 lines
1.5 KiB
TypeScript
51 lines
1.5 KiB
TypeScript
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))
|
|
}
|
|
|
|
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)
|
|
}
|
|
|
|
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)))
|
|
}
|
|
|
|
export const arrayBufferToBase64URL = async (buf: ArrayBuffer) => {
|
|
return (await arrayBufferToBase64(buf)).replace(/=/g, '').replace(/\+/g, '-').replace(/\//g, '_')
|
|
}
|