dockerized_openAger/nodered/rootfs/data/node_modules/entities
valki 664c6d8ca3 Intial Commit 2020-10-17 18:42:50 +02:00
..
lib Intial Commit 2020-10-17 18:42:50 +02:00
maps Intial Commit 2020-10-17 18:42:50 +02:00
test Intial Commit 2020-10-17 18:42:50 +02:00
.travis.yml Intial Commit 2020-10-17 18:42:50 +02:00
LICENSE Intial Commit 2020-10-17 18:42:50 +02:00
index.js Intial Commit 2020-10-17 18:42:50 +02:00
package.json Intial Commit 2020-10-17 18:42:50 +02:00
readme.md Intial Commit 2020-10-17 18:42:50 +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