Skip to main content
Module

x/netzo/deno.d.ts>atob

SDK for Netzo, the open Web platform to unify IoT devices, applications and services.
Go to Latest
function atob
import { atob } from "https://deno.land/x/netzo@v0.1.8/deno.d.ts";

Decodes a string of data which has been encoded using base-64 encoding.

console.log(atob("aGVsbG8gd29ybGQ=")); // outputs 'hello world'

Parameters

s: string

Returns

string