keksAccountGUI/node_modulesOLD/entities
Kekskurse 8e5ce9e324 Update Framework 2019-08-11 20:48:02 +02:00
..
lib Update Framework 2019-08-11 20:48:02 +02:00
maps Update Framework 2019-08-11 20:48:02 +02:00
test Update Framework 2019-08-11 20:48:02 +02:00
.travis.yml Update Framework 2019-08-11 20:48:02 +02:00
LICENSE Update Framework 2019-08-11 20:48:02 +02:00
index.js Update Framework 2019-08-11 20:48:02 +02:00
package.json Update Framework 2019-08-11 20:48:02 +02:00
readme.md Update Framework 2019-08-11 20:48:02 +02:00

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