katwhite 2bb8a30479 i hope this works пре 4 година
..
lib 2bb8a30479 i hope this works пре 4 година
maps 2bb8a30479 i hope this works пре 4 година
test 2bb8a30479 i hope this works пре 4 година
.travis.yml 2bb8a30479 i hope this works пре 4 година
LICENSE 2bb8a30479 i hope this works пре 4 година
index.js 2bb8a30479 i hope this works пре 4 година
package.json 2bb8a30479 i hope this works пре 4 година
readme.md 2bb8a30479 i hope this works пре 4 година

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-2-Clause