huanggang 03a863fb53 add node_modules пре 8 година
..
lib 03a863fb53 add node_modules пре 8 година
maps 03a863fb53 add node_modules пре 8 година
test 03a863fb53 add node_modules пре 8 година
.travis.yml 03a863fb53 add node_modules пре 8 година
LICENSE 03a863fb53 add node_modules пре 8 година
index.js 03a863fb53 add node_modules пре 8 година
package.json 03a863fb53 add node_modules пре 8 година
readme.md 03a863fb53 add node_modules пре 8 година

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