summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/figures/readme.md
blob: 88e2531d7b41c6674461f45d8fd5b4ea918fbb77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# figures [![Build Status](https://travis-ci.org/sindresorhus/figures.svg?branch=master)](https://travis-ci.org/sindresorhus/figures)

> Unicode symbols with Windows CMD fallbacks

[![](screenshot.png)](index.js)

[*and more...*](index.js)

Windows CMD only supports a [limited character set](http://en.wikipedia.org/wiki/Code_page_437).


## Install

```
$ npm install --save figures
```


## Usage

See the [source](index.js) for supported symbols.

```js
const figures = require('figures');

console.log(figures.tick);
// On real OSes:  ✔︎
// On Windows:    √
```


## License

MIT © [Sindre Sorhus](http://sindresorhus.com)