Xmorse
Xmorse is a pure javascript(~1.5kb) library for encoding / decoding morse code messages, unicode supported.
1. Install
npm install xmorse
Or download dist/xmorse.min.js
source file。
2. Import It
Script
tag.
ES6
style.
;
3. Usage & API
There is only 2 API named encode
, decode
. For encode(msg, [option])
, example:
;// standart morseencode'Hello, Xmorse!'; // unicodeencode'コンニチハ, セカイ!';encode'越过长城,走向世界'; // option;encode'越过长城,走向世界', option;
For decode(morse, [option])
, example:
;decode'../.-../---/...-/./-.--/---/..-/-/---/---/--...-....-...-/-..---..-.-----/---..-...--...-/-..----.--.....'; // option;decode'*-** --- ***- *', option;
4. Test
$npm install $npm test
5. LICENSE
MIT@hustcc