Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 543 Bytes

indentString.md

File metadata and controls

18 lines (14 loc) · 543 Bytes
title tags
indentString
string,beginner

Indents each line in the provided string.

  • Use String.replace and a regular expression to add the character specified by indent count times at the start of each line.
  • Omit the third parameter, indent, to use a default indentation character of ' '.
const indentString = (str, count, indent = ' ') => str.replace(/^/gm, indent.repeat(count));
indentString('Lorem\nIpsum', 2); // '  Lorem\n  Ipsum'
indentString('Lorem\nIpsum', 2, '_'); // '__Lorem\n__Ipsum'