prc b6c02717e6 Upload complete no-internet building environment. | пре 1 година | |
---|---|---|
.. | ||
lib | пре 1 година | |
maps | пре 1 година | |
test | пре 1 година | |
.travis.yml | пре 1 година | |
LICENSE | пре 1 година | |
index.js | пре 1 година | |
package.json | пре 1 година | |
readme.md | пре 1 година |
En- & decoder for XML/HTML entities.
entities
npm i entities
entities
var entities = require("entities");
//encoding
entities.encodeXML("&"); // "&"
entities.encodeHTML("&"); // "&"
//decoding
entities.decodeXML("asdf & ÿ ü '"); // "asdf & ÿ ü '"
entities.decodeHTML("asdf & ÿ ü '"); // "asdf & ÿ ü '"
License: BSD-2-Clause