UNPKG
yoastseo-dep
Version:
latest (1.91.2-A)
1.91.2
1.91.2-A
Yoast clientside page analysis
github.com/Yoast/
Yoast/wordpress-seo
yoastseo-dep
/
src
/
languageProcessing
/
helpers
/
language
/
getLanguage.js
10 lines
(9 loc)
•
232 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
/** * The function getting the language part of the locale. * *
@param
{string} locale The locale. *
@returns
{string} The language part of the locale. */
export
default
function
(
locale
)
{
return
locale.
split
(
"_"
)[
0
]; }