vlad 6f123ff03e 18.07 пре 6 година
..
lib 6f123ff03e 18.07 пре 6 година
maps 6f123ff03e 18.07 пре 6 година
test 6f123ff03e 18.07 пре 6 година
.travis.yml 6f123ff03e 18.07 пре 6 година
LICENSE 6f123ff03e 18.07 пре 6 година
index.js 6f123ff03e 18.07 пре 6 година
package.json 6f123ff03e 18.07 пре 6 година
readme.md 6f123ff03e 18.07 пре 6 година

readme.md

#entities NPM version Downloads Build Status Coverage

En- & decoder for XML/HTML entities.

##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