Skip to content

Commit

Permalink
Fixed GetNumberOption
Browse files Browse the repository at this point in the history
  • Loading branch information
andyearnshaw committed May 6, 2013
1 parent 502845b commit 73a8707
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Intl.js
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ function /* 9.2.10 */GetNumberOption (options, property, minimum, maximum, fallb
var
// 1. Let value be the result of calling the [[Get]] internal method of
// options with argument property.
value = options.property;
value = options[property];

// 2. If value is not undefined, then
if (value !== undefined) {
Expand Down

0 comments on commit 73a8707

Please sign in to comment.