wishthis/node_modules/figures/readme.md

121 lines
4 KiB
Markdown
Raw Normal View History

2022-05-29 09:24:36 +00:00
# figures [![Build Status: Linux](https://travis-ci.org/sindresorhus/figures.svg?branch=master)](https://travis-ci.org/sindresorhus/figures) [![Build status: Windows](https://ci.appveyor.com/api/projects/status/mb743hl70269be3r/branch/master?svg=true)](https://ci.appveyor.com/project/sindresorhus/figures/branch/master)
2022-01-21 08:28:41 +00:00
> 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).
2022-05-29 09:24:36 +00:00
2022-01-21 08:28:41 +00:00
## Install
```
2022-05-29 09:24:36 +00:00
$ npm install --save figures
2022-01-21 08:28:41 +00:00
```
2022-05-29 09:24:36 +00:00
2022-01-21 08:28:41 +00:00
## Usage
See the [source](index.js) for supported symbols.
```js
const figures = require('figures');
console.log(figures('✔︎ check'));
2022-05-29 09:24:36 +00:00
// On real OSes: ✔︎ check
// On Windows: √ check
2022-01-21 08:28:41 +00:00
console.log(figures.tick);
2022-05-29 09:24:36 +00:00
// On real OSes: ✔︎
// On Windows: √
2022-04-07 07:06:43 +00:00
```
2022-01-21 08:28:41 +00:00
2022-05-29 09:24:36 +00:00
2022-01-21 08:28:41 +00:00
## API
2022-05-29 09:24:36 +00:00
### figures(input)
2022-01-21 08:28:41 +00:00
2022-05-29 09:24:36 +00:00
Returns the input with replaced fallback unicode symbols on Windows.
2022-01-21 08:28:41 +00:00
All the below [figures](#figures) are attached to the main export as shown in the example above.
2022-05-29 09:24:36 +00:00
#### input
2022-01-21 08:28:41 +00:00
Type: `string`
2022-05-29 09:24:36 +00:00
String where the unicode symbols will be replaced with fallback symbols depending on the OS.
2022-01-21 08:28:41 +00:00
## Figures
2022-05-29 09:24:36 +00:00
| Name | Real OSes | Windows |
| ------------------ | :-------: | :-----: |
| tick | ✔ | √ |
| cross | ✖ | × |
| star | ★ | * |
| square | ▇ | █ |
| squareSmall | ◻ | [ ] |
| squareSmallFilled | ◼ | [█] |
| play | ▶ | ► |
| circle | ◯ | ( ) |
| circleFilled | ◉ | (*) |
| circleDotted | ◌ | ( ) |
| circleDouble | ◎ | ( ) |
| circleCircle | ⓞ | (○) |
| circleCross | ⓧ | (×) |
| circlePipe | Ⓘ | (│) |
| circleQuestionMark | ?⃝ | (?) |
| bullet | ● | * |
| dot | | . |
| line | ─ | ─ |
| ellipsis | … | ... |
| pointer | | > |
| pointerSmall | | » |
| info | | i |
| warning | ⚠ | ‼ |
| hamburger | ☰ | ≡ |
| smiley | ㋡ | ☺ |
| mustache | ෴ | ┌─┐ |
| heart | ♥ | ♥ |
| arrowUp | ↑ | ↑ |
| arrowDown | ↓ | ↓ |
| arrowLeft | ← | ← |
| arrowRight | → | → |
| radioOn | ◉ | (*) |
| radioOff | ◯ | ( ) |
| checkboxOn | ☒ | [×] |
| checkboxOff | ☐ | [ ] |
| checkboxCircleOn | ⓧ | (×) |
| checkboxCircleOff | Ⓘ | ( ) |
| questionMarkPrefix | ?⃝ | |
| oneHalf | ½ | 1/2 |
| oneThird | ⅓ | 1/3 |
| oneQuarter | ¼ | 1/4 |
| oneFifth | ⅕ | 1/5 |
| oneSixth | ⅙ | 1/6 |
| oneSeventh | ⅐ | 1/7 |
| oneEighth | ⅛ | 1/8 |
| oneNinth | ⅑ | 1/9 |
| oneTenth | ⅒ | 1/10 |
| twoThirds | ⅔ | 2/3 |
| twoFifths | ⅖ | 2/5 |
| threeQuarters | ¾ | 3/4 |
| threeFifths | ⅗ | 3/5 |
| threeEighths | ⅜ | 3/8 |
| fourFifths | ⅘ | 4/5 |
| fiveSixths | ⅚ | 5/6 |
| fiveEighths | ⅝ | 5/8 |
| sevenEighths | ⅞ | 7/8 |
2022-01-21 08:28:41 +00:00
## Related
- [log-symbols](https://github.com/sindresorhus/log-symbols) - Colored symbols for various log levels
2022-05-29 09:24:36 +00:00
## License
MIT © [Sindre Sorhus](https://sindresorhus.com)