Skip to content

Commit

Permalink
change dummy calling sequence to pass type-checking test
Browse files Browse the repository at this point in the history
  • Loading branch information
John Denker committed Sep 21, 2015
1 parent fdd9078 commit 18400f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fromcodepoint.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if (!String.fromCodePoint) {
try {
var object = {};
var $defineProperty = Object.defineProperty;
var result = $defineProperty(object, object, object) && $defineProperty;
var result = $defineProperty(object, 'foo', object) && $defineProperty;
} catch(error) {}
return result;
}());
Expand Down

0 comments on commit 18400f6

Please sign in to comment.