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.
37 lines
603 B
37 lines
603 B
4 years ago
|
# css-font-stretch-keywords
|
||
|
|
||
|
List of CSS [font stretches](https://developer.mozilla.org/en-US/docs/Web/CSS/font-stretch):
|
||
|
- normal
|
||
|
- condensed
|
||
|
- semi-condensed
|
||
|
- extra-condensed
|
||
|
- ultra-condensed
|
||
|
- expanded
|
||
|
- semi-expanded
|
||
|
- extra-expanded
|
||
|
- ultra-expanded
|
||
|
|
||
|
## Installation
|
||
|
|
||
|
```
|
||
|
npm install css-font-stretch-keywords [--save[-dev]]
|
||
|
```
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
```js
|
||
|
var fontStretchKeywords = require('css-font-stretch-keywords');
|
||
|
fontStretchKeywords; /*
|
||
|
[
|
||
|
"normal",
|
||
|
"condensed",
|
||
|
"semi-condensed",
|
||
|
"extra-condensed",
|
||
|
"ultra-condensed",
|
||
|
"expanded",
|
||
|
"semi-expanded",
|
||
|
"extra-expanded",
|
||
|
"ultra-expanded"
|
||
|
]
|
||
|
*/
|
||
|
```
|