Skip to content

Commit

Permalink
Fixing typo
Browse files Browse the repository at this point in the history
  • Loading branch information
thefourtheye committed Aug 11, 2015
1 parent 60e7df2 commit 67c1cad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function isArray(arg) {
if (Array.isArray) {
return Array.isArray(arg);
}
return objectToString(ar) === '[object Array]';
return objectToString(arg) === '[object Array]';
}
exports.isArray = isArray;

Expand Down

0 comments on commit 67c1cad

Please sign in to comment.