Skip to main content
Module

x/lume/deps/base64.ts>encodeBase64

🔥 Static site generator for Deno 🦕
Very Popular
Latest
function encodeBase64
import { encodeBase64 } from "https://deno.land/x/lume@v2.1.4/deps/base64.ts";

Converts data into a base64-encoded string.

Examples

Example 1

import { encodeBase64 } from "https://deno.land/std@0.224.0/encoding/base64.ts";

encodeBase64("foobar"); // "Zm9vYmFy"

Parameters

data: ArrayBuffer | Uint8Array | string

The data to encode.

Returns

string

The base64-encoded string.