utf8-fl
v1.0.0
Published
utf8-fl ====
Downloads
55
Readme
utf8-fl
Simple utf8 encoder/decoder which using TextEncoder/TextDecoder classes.
Example
import {Utf8} from "utf8-fl";
let text = "Some text";
let array = Utf8.encode(text);
let res = Utf8.decode(array);
console.log(text == res, text, array, res);
License
The MIT License (MIT)