You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 rivejä
271 B

  1. module.exports.indent = function indent(str, len, fromLine = 0) {
  2. return str
  3. .split("\n")
  4. .map((line, i) => {
  5. if (i + 1 >= fromLine) {
  6. return `${Array(len + 1).join(" ")}${line}`
  7. } else {
  8. return line
  9. }
  10. })
  11. .join("\n")
  12. }