Eslint cleanup (imports left), except template.

This commit is contained in:
Michał Lipiński
2017-02-17 23:22:07 +01:00
parent 753e47de13
commit 16413cc32a
6 changed files with 11 additions and 11 deletions

View File

@@ -29,7 +29,7 @@ const hasOwnProperty = objectProto.hasOwnProperty
function defaults(object, ...sources) {
object = Object(object)
let srcIndex = -1
let srcLength = sources.length
const srcLength = sources.length
while (++srcIndex < srcLength) {
const source = sources[srcIndex]
const props = keysIn(source)