StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
911 B
27 lines
911 B
# entities [](https://npmjs.org/package/entities) [](https://npmjs.org/package/entities) [](http://travis-ci.org/fb55/entities) [](https://coveralls.io/r/fb55/entities)
|
|
|
|
En- & decoder for XML/HTML entities.
|
|
|
|
## How to…
|
|
|
|
### …install `entities`
|
|
|
|
npm i entities
|
|
|
|
### …use `entities`
|
|
|
|
```javascript
|
|
var entities = require("entities");
|
|
//encoding
|
|
entities.encodeXML("&"); // "&"
|
|
entities.encodeHTML("&"); // "&"
|
|
//decoding
|
|
entities.decodeXML("asdf & ÿ ü '"); // "asdf & ÿ ü '"
|
|
entities.decodeHTML("asdf & ÿ ü '"); // "asdf & ÿ ü '"
|
|
```
|
|
|
|
<!-- TODO extend API -->
|
|
|
|
---
|
|
|
|
License: BSD-2-Clause
|
|
|