Skip to content

fabeuluci/utf8-fl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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)