UNPKG
budgie-cli
Version:
latest (0.3.0)
0.3.0
Node CLI for Budgie.
github.com/highschoolhacking/budgie-cli
highschoolhacking/budgie-cli
budgie-cli
/
src
/
utils
/
text.ts
8 lines
(7 loc)
•
213 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
/** * Indents each line of text with a tab character. * *
@param
text Text to indent. *
@returns
The indented text. */
export
const
indent
= (
text
:
string
) =>
`
${text.replace(/\n/g,
"\n "
)}
`
;