Skip to content

Commit

Permalink
1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jonschlinkert committed Feb 27, 2017
1 parent de5cee7 commit 243e487
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

module.exports = function forIn(obj, fn, thisArg) {
for (var key in obj) {
if (fn.call(thisArg, obj[key], key, o) === false) {
if (fn.call(thisArg, obj[key], key, obj) === false) {
break;
}
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "for-in",
"description": "Iterate over the own and inherited enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.js",
"version": "1.0.0",
"version": "1.0.1",
"homepage": "https://github.com/jonschlinkert/for-in",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"contributors": [
Expand Down

0 comments on commit 243e487

Please sign in to comment.