Travis build: 777

This commit is contained in:
30secondsofcode
2018-11-10 12:43:12 +00:00
parent e6bf28744e
commit b030bc4ca6
9 changed files with 22 additions and 22 deletions

View File

@ -963,9 +963,9 @@ const reject = (pred, array) => array.filter((...args) => !pred(...args));
const remove = (arr, func) =>
Array.isArray(arr)
? arr.filter(func).reduce((acc, val) => {
arr.splice(arr.indexOf(val), 1);
return acc.concat(val);
}, [])
arr.splice(arr.indexOf(val), 1);
return acc.concat(val);
}, [])
: [];
const removeNonASCII = str => str.replace(/[^\x20-\x7E]/g, '');
const renameKeys = (keysMap, obj) =>

View File

@ -2321,7 +2321,7 @@ ok 1234 — defer is a Function
# Test Suites: 100% ██████████, 360 passed, 360 total
# Tests: 100% ██████████, 1234 passed, 1234 total
# Time: 53.433s
# Time: 52.713s
# Ran all test suites.