Remove semicolons.

This commit is contained in:
Michał Lipiński
2017-04-03 11:55:12 +02:00
parent 53cac4eef4
commit ca2fd5c64a
2 changed files with 7 additions and 7 deletions

View File

@@ -12,13 +12,13 @@
function baseFor(object, iteratee, keysFunc) {
const iterable = Object(object)
const props = keysFunc(object)
let { length } = props;
let index = -1;
let { length } = props
let index = -1
while (length--) {
const key = props[++index];
const key = props[++index]
if (iteratee(iterable[key], key, iterable) === false) {
break;
break
}
}
return object

View File

@@ -11,12 +11,12 @@
function baseForRight(object, iteratee, keysFunc) {
const iterable = Object(object)
const props = keysFunc(object)
let { length } = props;
let { length } = props
while (length--) {
const key = props[length];
const key = props[length]
if (iteratee(iterable[key], key, iterable) === false) {
break;
break
}
}
return object