Skip to content

Commit e07f975

Browse files
ehmickysindresorhus
authored andcommittedOct 22, 2019
Add nodejs symbol (#29)
1 parent db8db43 commit e07f975

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed
 

‎index.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ declare const figures: {
4747
readonly smiley: string;
4848
readonly mustache: string;
4949
readonly heart: string;
50+
readonly nodejs: string;
5051
readonly arrowUp: string;
5152
readonly arrowDown: string;
5253
readonly arrowLeft: string;

‎index.js

+2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ const main = {
3131
smiley: '㋡',
3232
mustache: '෴',
3333
heart: '♥',
34+
nodejs: '⬢',
3435
arrowUp: '↑',
3536
arrowDown: '↓',
3637
arrowLeft: '←',
@@ -90,6 +91,7 @@ const windows = {
9091
smiley: '☺',
9192
mustache: '┌─┐',
9293
heart: main.heart,
94+
nodejs: '♦',
9395
arrowUp: main.arrowUp,
9496
arrowDown: main.arrowDown,
9597
arrowLeft: main.arrowLeft,

‎readme.md

+1
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ String where the Unicode symbols will be replaced with fallback symbols dependin
7979
| smiley |||
8080
| mustache || ┌─┐ |
8181
| heart |||
82+
| nodejs |||
8283
| arrowUp |||
8384
| arrowDown |||
8485
| arrowLeft |||

0 commit comments

Comments
 (0)
Please sign in to comment.