From c4aee302c3b0f010b075731c58edd8f0b111a90f Mon Sep 17 00:00:00 2001 From: nodify-at <21654050+nodify-at@users.noreply.github.com> Date: Thu, 12 Sep 2024 00:35:29 +0200 Subject: [PATCH] Fixed parameter to check cached resolved options --- src/impl/locale.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/impl/locale.js b/src/impl/locale.js index b0ecc8c0..d66c9c74 100644 --- a/src/impl/locale.js +++ b/src/impl/locale.js @@ -175,7 +175,7 @@ function supportsFastNumbers(loc) { loc.numberingSystem === "latn" || !loc.locale || loc.locale.startsWith("en") || - getCachedIntResolvedOptions(loc.locale).numberingSystem === "latn" + getCachedIntResolvedOptions(loc.intl).numberingSystem === "latn" ); } }