Socket
Socket
Sign inDemoInstall

@hazae41/base64

Package Overview
Dependencies
5
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @hazae41/base64

Base64 adapter for WebAssembly and JS implementations


Version published
Weekly downloads
2
decreased by-50%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Base64

Base64 adapter for WebAssembly and JS implementations

npm i @hazae41/base64

Node Package 📦

Features

Current features

  • 100% TypeScript and ESM
  • No external dependencies

Getting started

Buffer (NodeJS)

import { Base64 } from "@hazae41/base64"

Base64.set(Base64.fromBuffer())

Alocer (WebAssembly)

npm i @hazae41/alocer
import { Base64 } from "@hazae41/base64"

Base64.set(await Base64.fromBufferOrAlocer())

Scure (JavaScript)

npm i @scure/base
import { Base64 } from "@hazae41/base64"

Base64.set(Base64.fromBufferOrScure())

Usage

Direct

const encoded: string = Base64.get().tryEncodePadded(new Uint8Array([1,2,3,4,5])).unwrap()
const decoded: Uint8Array = Base64.get().tryDecodePadded(encoded).unwrap().copyAndDispose()

Keywords

FAQs

Last updated on 16 Nov 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc