From fa41e17011781af3a62047f6029a4bb14910c9ad Mon Sep 17 00:00:00 2001 From: afiqzudinhadi Date: Fri, 12 Jul 2024 15:52:46 +0800 Subject: [PATCH] style: update input prompt --- index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index 6a8f093..611d437 100644 --- a/index.js +++ b/index.js @@ -1,7 +1,8 @@ import { input } from "@inquirer/prompts"; const answer = await input({ - message: "Enter an array of numbers or strings separated by commas:", + message: + "Enter an array of numbers or strings (or both!) separated by commas:", }); const array = answer.split(",").map((item) => {