/
githubmirror
/
english-compiler
Обзор
Документация
Войти
/
githubmirror
/
english-compiler
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/util/indentString.js
7 строк
243 B
Eugene Cheah
sorting out more things
17 фев 2023, 11:31
17 фев 2023, 11:31
f859dfa
Код
Авторство
О чём код?
module.exports = function indentString(str, count = 1, indent = ' ', includeEmptyLines = true) { if (count === 0) { return str; } const regex = includeEmptyLines ? /^/gm : /^(?!\s*$)/gm; return str.replace(regex, indent.repeat(count)); }