Skip to content

Commit 243e487

Browse files
committed
1.0.1
1 parent de5cee7 commit 243e487

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
module.exports = function forIn(obj, fn, thisArg) {
1111
for (var key in obj) {
12-
if (fn.call(thisArg, obj[key], key, o) === false) {
12+
if (fn.call(thisArg, obj[key], key, obj) === false) {
1313
break;
1414
}
1515
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "for-in",
33
"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",
4-
"version": "1.0.0",
4+
"version": "1.0.1",
55
"homepage": "https://github.com/jonschlinkert/for-in",
66
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
77
"contributors": [

0 commit comments

Comments
 (0)