From a02477d43c862130c9e4798802b6be8bdfeaf07f Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Fri, 5 Nov 2021 00:54:45 +1300 Subject: [PATCH] Tweak Signed-off-by: Richie Bendall --- source/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/index.js b/source/index.js index 2760132..6411672 100644 --- a/source/index.js +++ b/source/index.js @@ -39,7 +39,7 @@ export class Chalk { } const chalkFactory = options => { - const chalk = (...arguments_) => arguments_.join(' '); + const chalk = (...strings) => strings.join(' '); applyOptions(chalk, options); Object.setPrototypeOf(chalk, createChalk.prototype);