utf8-bindeprecated

A fast UTF-8 encoding and decoding.

Usage no npm install needed!

<script type="module">
  import utf8Bin from 'https://cdn.skypack.dev/utf8-bin';
</script>

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