An open API service indexing awesome lists of open source software.

https://github.com/fabeuluci/utf8-fl

Simple utf8 encoder/decoder
https://github.com/fabeuluci/utf8-fl

text-encoding utf-8

Last synced: 30 days ago
JSON representation

Simple utf8 encoder/decoder

Awesome Lists containing this project

README

          

utf8-fl
====

Simple utf8 encoder/decoder which using TextEncoder/TextDecoder classes.

Example
---

```typescript
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)