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

@@ -17,7 +17,7 @@
* // => [16, 64] (iteration order is not guaranteed)
*/
function mapObject(object, iteratee) {
const props = Object.keys(object);
const props = Object.keys(object)
const result = new Array(props.length)
props.forEach((key, index) => {