[READ-ONLY] Mirror of https://github.com/bombshell-dev/clack. Effortlessly build beautiful command-line apps bomb.sh/docs/clack/basics/getting-started/
cli command-line command-line-app node prompt prompts
5

Configure Feed

Select the types of activity you want to include in your feed.

feat: ansi regex

Bruno Rocha (Aug 12, 2023, 8:11 PM -0300) 803e0893 f1225b86

+1 -1
+1 -1
packages/prompts/src/index.ts
··· 704 704 if (!str) return 0; 705 705 706 706 const colorCodeRegex = /\x1B\[[0-9;]*[mG]/g; 707 - const arr = [...str.replace(colorCodeRegex, '')]; 707 + const arr = [...strip(str.replace(colorCodeRegex, ''))]; 708 708 let len = 0; 709 709 710 710 for (const char of arr) {