Détail du package

utf8-bin

AlexMasterov27MITobsolète1.0.3

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

A fast UTF-8 encoding and decoding

utf8, binary, encoding, decoding

readme

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