mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-08 10:17:48 +00:00
Fixin assignment to constant.
This commit is contained in:
@@ -27,7 +27,7 @@ function forOwnRight(object, iteratee) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
const props = Object.keys(object)
|
const props = Object.keys(object)
|
||||||
const length = props.length
|
let length = props.length
|
||||||
while (length--) {
|
while (length--) {
|
||||||
iteratee(object[props[length]], iteratee, object)
|
iteratee(object[props[length]], iteratee, object)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user