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
- Host: GitHub
- URL: https://github.com/fabeuluci/utf8-fl
- Owner: fabeuluci
- License: mit
- Created: 2019-11-24T19:27:25.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-12T21:33:42.000Z (about 6 years ago)
- Last Synced: 2025-10-01T09:28:00.280Z (6 months ago)
- Topics: text-encoding, utf-8
- Language: TypeScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)