/morse

Convert text to and from morse code

Primary LanguageJavaScriptMIT LicenseMIT

morse.js

Convert text to and from morse code.

Usage

Encode

morse.encode('SOS'); // ... --- ...

Decode

morse.decode('... --- ...'); // sos

Encode HTML

// <p class="to-morse">I have a <b>ham</p> radio</p>
morse.encodeHTML('.to-morse');
// <p class="to-morse">..  .... .- ...- .  .- <b>.... .- --</b> .-. .- -.. .. ---</p>

Decode HTML

// <p class="to-morse">..  .... .- ...- .  .- <b>.... .- --</b> .-. .- -.. .. ---</p>
morse.decodeHTML('.to-morse');
// <p class="to-morse">i have a <b>ham</p> radio</p>