From e07f975018d577f8e10e77c140e189819f356e65 Mon Sep 17 00:00:00 2001 From: ehmicky Date: Tue, 22 Oct 2019 05:35:13 +0200 Subject: [PATCH] Add `nodejs` symbol (#29) --- index.d.ts | 1 + index.js | 2 ++ readme.md | 1 + 3 files changed, 4 insertions(+) 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 | ← | ← |