diff --git a/index.d.ts b/index.d.ts index f406b7a..c00c8e6 100644 --- a/index.d.ts +++ b/index.d.ts @@ -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; diff --git a/index.js b/index.js index 657a7f5..10bd6ed 100644 --- a/index.js +++ b/index.js @@ -31,6 +31,7 @@ const main = { smiley: '㋡', mustache: '෴', heart: '♥', + nodejs: '⬢', arrowUp: '↑', arrowDown: '↓', arrowLeft: '←', @@ -90,6 +91,7 @@ const windows = { smiley: '☺', mustache: '┌─┐', heart: main.heart, + nodejs: '♦', arrowUp: main.arrowUp, arrowDown: main.arrowDown, arrowLeft: main.arrowLeft, diff --git a/readme.md b/readme.md index edf3d97..cf53700 100644 --- a/readme.md +++ b/readme.md @@ -79,6 +79,7 @@ String where the Unicode symbols will be replaced with fallback symbols dependin | smiley | ㋡ | ☺ | | mustache | ෴ | ┌─┐ | | heart | ♥ | ♥ | +| nodejs | ⬢ | ♦ | | arrowUp | ↑ | ↑ | | arrowDown | ↓ | ↓ | | arrowLeft | ← | ← |