This package has been deprecated

Author message:

WARNING: This project has been renamed to @asm/utf8. Install using @asm/utf8 instead.

utf8-bin

1.0.3 • Public • Published

utf8-bin

A fast UTF-8 encoding and decoding.

npm Build Status Coverage Status

Installation

With npm:

npm install utf8-bin

With yarn:

yarn add utf8-bin

Usage

ES Modules

import { strToUtf8, utf8ToStr } from 'utf8-bin';        // ES6 (codePoint)
import { strToUtf8, utf8ToStr } from 'utf8-bin/legacy'; // ES5
 
// Node v8.6  --experimental-modules
// Node v12.0 --experimental-modules --es-module-specifier-resolution=node
import { strToUtf8, utf8ToStr } from 'utf8-bin/index';

CommonJS

const { strToUtf8, utf8ToStr } = require('utf8-bin');

API

utf8Length(str[, offset, length])

strToUtf8(str[, offset, length])

utf8ToStr(buf[, offset, length])

viewUtf8ToStr(view[, offset, length])

License

MIT

Package Sidebar

Install

npm i utf8-bin

Weekly Downloads

1

Version

1.0.3

License

MIT

Unpacked Size

109 kB

Total Files

54

Last publish

Collaborators

  • asm