Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kamataryo/utf8fy
https://github.com/kamataryo/utf8fy
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kamataryo/utf8fy
- Owner: kamataryo
- Created: 2020-03-27T09:08:27.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-27T09:36:03.000Z (almost 5 years ago)
- Last Synced: 2024-11-05T20:53:58.720Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# @kamataryo/utf8fy
A stream to decode as SHIFT_JIS and encode as UTF-8.
## Usage
```shell
$ cat shift_jis.text | npx @kamataryo/utf8fy | utf-8.text
``````javascript
import Utf8fyStream from "@kamataryo/utf8fy";
process.stdin.pipe(new Utf8fyStream()).pipe(process.stdout);
```