Created
May 13, 2020 10:29
-
-
Save jleeothon/894ab813b577fdbeace0775a33eee0ab to your computer and use it in GitHub Desktop.
Normalize Unicode from stdin into stdout
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
process.stdin.on('data', (chunk) => { process.stdout.write(chunk.toString().normalize()) }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment