The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

entities NPM version Downloads Build Status Coverage

En- & decoder for XML/HTML entities.

Features:

How to…

…install entities

npm i entities

…use entities

javascript //encoding require("entities").encode(<str> data[, <int> level]); //decoding require("entities").decode(<str> data[, <int> level]);

The level attribute indicates what level of entities should be decoded (0 = XML, 1 = HTML4 and 2 = HTML5). The default is 0 (read: XML).

There are also methods to access the level directly. Just append the name of the level to the action and you're ready to go (e.g. encodeHTML4(data), decodeXML(data)).

License: BSD-like