Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/evan-moon/nodejs-utf8
Simple UTF-8 encoder/decoder
https://github.com/evan-moon/nodejs-utf8
Last synced: 26 days ago
JSON representation
Simple UTF-8 encoder/decoder
- Host: GitHub
- URL: https://github.com/evan-moon/nodejs-utf8
- Owner: evan-moon
- License: mit
- Created: 2019-01-01T09:14:49.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-01T09:41:38.000Z (almost 6 years ago)
- Last Synced: 2024-04-24T21:22:21.043Z (8 months ago)
- Language: JavaScript
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[npm-image]: https://img.shields.io/npm/v/nodejs-utf8.svg
[npm-url]: https://www.npmjs.com/package/nodejs-utf8# nodejs-utf8 [![npm][npm-image]][npm-url]
Simple UTF-8 encoder/decoder## Installation
```shell
npm install nodejs-utf8
```## Usage (with CommonJS)
```javascript
const utf8 = require('nodejs-utf8');const encoded = utf8.encode('안녕하세요');
utf8.decode(encoded);
```