UNPKG

635 BMarkdownView Raw
1# figures [![Build Status](https://travis-ci.org/sindresorhus/figures.svg?branch=master)](https://travis-ci.org/sindresorhus/figures)
2
3> Unicode symbols with Windows CMD fallbacks
4
5[![](screenshot.png)](index.js)
6
7[*and more...*](index.js)
8
9Windows CMD only supports a [limited character set](http://en.wikipedia.org/wiki/Code_page_437).
10
11
12## Install
13
14```sh
15$ npm install --save figures
16```
17
18
19## Usage
20
21See the [source](index.js) for supported symbols.
22
23```js
24var figures = require('figures');
25
26console.log(figures.tick);
27// On real OSes: ✔︎
28// On Windows: √
29```
30
31
32## License
33
34MIT © [Sindre Sorhus](http://sindresorhus.com)