2.0.3
@hexagon/base64 2.0.3
No significant changes in the interface, but the major version is bumped due to the full build toolchain being replaced with Deno and esbuild. This removes a lot of cruft from the repository. The codebase is also converted from JavaScript with JSDoc typings to full TypeScript.
Do note that the default export for CommonJS is dropped
Previously:
const base64 = require("@hexagon/base64");
From 2.0
const { base64 } = require("@hexagon/base64");
// Which also enables importing the individual functions directly
const { fromString, toString } = require("@hexagon/base64");
Full Changelog: 1.1.28...2.0.2