mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 17:37:50 +00:00
Fix typos.
This commit is contained in:
@@ -23,9 +23,9 @@
|
||||
function mapValue(object, iteratee) {
|
||||
const result = {}
|
||||
Object.keys(Object(object)).forEach((key) => {
|
||||
result[key] = iteratee(object[value], key, object)
|
||||
result[key] = iteratee(object[key], key, object)
|
||||
})
|
||||
return result
|
||||
}
|
||||
|
||||
export default mapValues
|
||||
export default mapValue
|
||||
|
||||
Reference in New Issue
Block a user