From 73a87073d66eb7f1a74bbd8564db6eda5392f933 Mon Sep 17 00:00:00 2001 From: Andy Earnshaw Date: Mon, 6 May 2013 21:40:45 +0100 Subject: [PATCH] Fixed GetNumberOption --- Intl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Intl.js b/Intl.js index e1b8ae8a..da1d2432 100644 --- a/Intl.js +++ b/Intl.js @@ -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) {