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;

View File

@ -1,5 +1,6 @@
const shank = (arr, index = 0, delCount = 0, ...elements) =>
arr.slice(0, index)
.concat(elements)
.concat(arr.slice(index + delCount));
const shank = (arr, index = 0, delCount = 0, ...elements) =>
arr
.slice(0, index)
.concat(elements)
.concat(arr.slice(index + delCount));
module.exports = shank;

File diff suppressed because it is too large Load Diff