For encoding to/from base64urls implementing RFC 4648 base64url standard
89
Create a small helper that turns text or binary input into URL-safe base64 tokens by relying on the dependency's callable default export.
@generates
The implementation must delegate base64url conversion to the package's default callable export instead of reimplementing the algorithm or using its other helpers.
export function createUrlToken(input: string | Buffer, encoding?: BufferEncoding): string;Provides URL-safe base64 conversion via its callable default export.
Install with Tessl CLI
npx tessl i tessl/npm-base64url