UNPKG

@stackend/api

Version:

JS bindings to api.stackend.com

19 lines (15 loc) 271 B
/** * Get country code by locale */ export function getCountryCode(locale: string): string | null { if (!locale) { return null; } const v = locale.split('[-_]'); // de if (v.length == 1) { return null; } // en_US return v[1].toUpperCase(); }