MCPcopy Create free account
hub / github.com/DeepNotesApp/DeepNotes / base64ToBytes

Function base64ToBytes

packages/@stdlib/base64/src/base64.ts:4–6  ·  view source on GitHub ↗
(input: string)

Source from the content-addressed store, hash-verified

2import { Base64 } from 'js-base64';
3
4export function base64ToBytes(input: string): Uint8Array {
5 return Base64.toUint8Array(input);
6}
7export function bytesToBase64(
8 input: Uint8Array,
9 params?: { urlSafe?: boolean; padding?: boolean },

Callers 8

getPasswordHashValuesFunction · 0.90
emails.tsFile · 0.90
getAllPageUpdatesFunction · 0.90
update-flushing.tsFile · 0.90
crypto.tsFile · 0.90
tryRefreshTokensFunction · 0.90
pasteMethod · 0.90
base64ToBytesSafeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected