En- & decoder for XML/HTML entities. Uses some non-standard character mapping to better support sending text messages in the GSM format.…install
…use
License: BSD-like
How to…
…install entities
npm i entities
…use entities
var entities = require("entities");
//encoding
entities.encodeXML("&"); // "&"
entities.encodeHTML("&"); // "&"
//decoding
entities.decodeXML("asdf & ÿ ü '"); // "asdf & ÿ ü '"
entities.decodeHTML("asdf & ÿ ü '"); // "asdf & ÿ ü '"
License: BSD-like