shift73k/assets_old/node_modules/entities
2022-08-13 07:32:36 -04:00
..
lib progress on migrating to heex templates and font-icons 2022-08-13 07:32:36 -04:00
maps progress on migrating to heex templates and font-icons 2022-08-13 07:32:36 -04:00
test progress on migrating to heex templates and font-icons 2022-08-13 07:32:36 -04:00
.travis.yml progress on migrating to heex templates and font-icons 2022-08-13 07:32:36 -04:00
index.js progress on migrating to heex templates and font-icons 2022-08-13 07:32:36 -04:00
LICENSE progress on migrating to heex templates and font-icons 2022-08-13 07:32:36 -04:00
package.json progress on migrating to heex templates and font-icons 2022-08-13 07:32:36 -04:00
readme.md progress on migrating to heex templates and font-icons 2022-08-13 07:32:36 -04:00

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