Fix typos.

This commit is contained in:
John-David Dalton
2017-04-16 08:57:46 -05:00
parent 64a9975488
commit e2941dda3b
4 changed files with 7 additions and 6 deletions

View File

@@ -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