diff --git a/online.html b/online.html index c431b83..ac78d81 100644 --- a/online.html +++ b/online.html @@ -32,11 +32,11 @@ import {decode, encode} from "./base85.js"; globalThis.decode = decode; globalThis.encode = encode; - globalThis.b85 = {decode, encode}; + globalThis.base85 = globalThis.b85 = {decode, encode}; globalThis.util = util; const consoleCss = "color: #0D6EFD; font-weight: bold;"; - console.log("%c Use the global `b85` object:", consoleCss, globalThis.b85); + console.log("%c Use the global `base85` object:", consoleCss, globalThis.base85); console.log("%c Or just the global `encode` and `decode` functions from it.", consoleCss); console.log("%c Also, util functions from the `util` object:", consoleCss, Object.keys(util));