suochencheng 7cf50435fd 1 6 yıl önce
..
lib 7cf50435fd 1 6 yıl önce
maps 7cf50435fd 1 6 yıl önce
test 7cf50435fd 1 6 yıl önce
.travis.yml 7cf50435fd 1 6 yıl önce
LICENSE 7cf50435fd 1 6 yıl önce
index.js 7cf50435fd 1 6 yıl önce
package.json 7cf50435fd 1 6 yıl önce
readme.md 7cf50435fd 1 6 yıl önce

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