Travis build: 543 [cron]

This commit is contained in:
30secondsofcode
2018-09-27 20:14:50 +00:00
parent 86641d396d
commit 3f52b7606a
4 changed files with 1662 additions and 1619 deletions

View File

@ -1,3 +1,2 @@
const indentString = (str, count, indent = ' ') =>
str.replace(/^/mg, indent.repeat(count));
const indentString = (str, count, indent = ' ') => str.replace(/^/gm, indent.repeat(count));
module.exports = indentString;