Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
20 lines
774 B
Text
20 lines
774 B
Text
import { LookupSupportedLocales } from '@formatjs/intl-localematcher';
|
|
import { ToObject } from './262';
|
|
import { GetOption } from './GetOption';
|
|
/**
|
|
* https://tc39.es/ecma402/#sec-supportedlocales
|
|
* @param availableLocales
|
|
* @param requestedLocales
|
|
* @param options
|
|
*/
|
|
export function SupportedLocales(availableLocales, requestedLocales, options) {
|
|
var matcher = 'best fit';
|
|
if (options !== undefined) {
|
|
options = ToObject(options);
|
|
matcher = GetOption(options, 'localeMatcher', 'string', ['lookup', 'best fit'], 'best fit');
|
|
}
|
|
if (matcher === 'best fit') {
|
|
return LookupSupportedLocales(Array.from(availableLocales), requestedLocales);
|
|
}
|
|
return LookupSupportedLocales(Array.from(availableLocales), requestedLocales);
|
|
}
|