Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add nodejs symbol #29

Merged
merged 1 commit into from Oct 22, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions index.d.ts
Expand Up @@ -47,6 +47,7 @@ declare const figures: {
readonly smiley: string;
readonly mustache: string;
readonly heart: string;
readonly nodejs: string;
readonly arrowUp: string;
readonly arrowDown: string;
readonly arrowLeft: string;
Expand Down
2 changes: 2 additions & 0 deletions index.js
Expand Up @@ -31,6 +31,7 @@ const main = {
smiley: '㋡',
mustache: '෴',
heart: '♥',
nodejs: '⬢',
arrowUp: '↑',
arrowDown: '↓',
arrowLeft: '←',
Expand Down Expand Up @@ -90,6 +91,7 @@ const windows = {
smiley: '☺',
mustache: '┌─┐',
heart: main.heart,
nodejs: '♦',
arrowUp: main.arrowUp,
arrowDown: main.arrowDown,
arrowLeft: main.arrowLeft,
Expand Down
1 change: 1 addition & 0 deletions readme.md
Expand Up @@ -79,6 +79,7 @@ String where the Unicode symbols will be replaced with fallback symbols dependin
| smiley | ㋡ | ☺ |
| mustache | ෴ | ┌─┐ |
| heart | ♥ | ♥ |
| nodejs | ⬢ | ♦ |
| arrowUp | ↑ | ↑ |
| arrowDown | ↓ | ↓ |
| arrowLeft | ← | ← |
Expand Down