Socket
Socket
Sign inDemoInstall

@kalin-setterberg/encoding

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @kalin-setterberg/encoding

Helpers for decoding or encoding BASE64 and UTF-8 in any execution context.


Version published
Weekly downloads
0
Maintainers
1
Created
Weekly downloads
 

Readme

Source

JS functions for working with encodings. Contains typings for TypeScript.

Encode Base64

All data are processed using Uint8Arrays. In a node-like context you may encode a Buffer but the return value will be a plain Uint8Array.

import { b64enc } from "@kalin-setterberg/encoding";
const useBase64url = true;
const data = new Uint8Array([104, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100]);
/** @type {Uint8Array} */
const result = b64enc(data, useBase64url);

Encode UTF-8

Prefers the use of a globally defined TextEncoder following the WHATWG standard. If no TextEncoder is defined but there is a global Buffer, as in node, a Buffer will be used for encoding.

Falls back upon a custom implementation supporting up to 16 bit code points.

import { utf8enc } from "@kalin-setterberg/encoding";
const data = "hello world";
/** @type {Uint8Array} */
const result = utf8enc(data);

Decode UTF-8

Prefers the use of a globally defined TextDecoder following the WHATWG standard. If no TextDecoder is defined but there is a global Buffer, as in node, Buffer.toString() will be used for decoding when the parameter is an instance of Buffer.

Falls back upon a custom implementation supporting up to 16 bit code points.

import { utf8dec } from "@kalin-setterberg/encoding";
const data = new Uint8Array([104, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100]);
/** @type {string} */
const result = utf8dec(data);

FAQs

Last updated on 21 May 2018

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