Travis build: 543 [cron]
This commit is contained in:
@ -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;
|
||||
|
||||
@ -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;
|
||||
|
||||
3179
test/testlog
3179
test/testlog
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user