entities-gsm
v1.0.0
Published
Encode & decode XML/HTML entities with ease
Downloads
299
Maintainers
Readme
En- & decoder for XML/HTML entities. Uses some non-standard character mapping to better support sending text messages in the GSM format.
##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