git-svn-id: https://svn.libreccm.org/ccm/trunk@5740 8810af33-2d31-482b-a856-94f89814c4df |
||
|---|---|---|
| .. | ||
| lib | ||
| maps | ||
| test | ||
| .travis.yml | ||
| LICENSE | ||
| index.js | ||
| package.json | ||
| readme.md | ||
readme.md
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