kubernetes-handbook/entities
Jimmy Song 1a5e3f08c0
update plugin
2022-02-22 15:54:51 +08:00
..
lib update plugin 2022-02-22 15:54:51 +08:00
maps update plugin 2022-02-22 15:54:51 +08:00
test update plugin 2022-02-22 15:54:51 +08:00
.travis.yml update plugin 2022-02-22 15:54:51 +08:00
LICENSE update plugin 2022-02-22 15:54:51 +08:00
index.js update plugin 2022-02-22 15:54:51 +08:00
package.json update plugin 2022-02-22 15:54:51 +08:00
readme.md update plugin 2022-02-22 15:54:51 +08: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