UNPKG

yoastseo-dep

Version:

Yoast clientside page analysis

12 lines (10 loc) 391 B
/** * Checks which languages have morphology support inside YoastSEO.js. * * @returns {string[]} A list of languages that have morphology support. */ export function getLanguagesWithWordFormSupport() { const supportedLanguages = [ "en", "de", "es", "fr", "it", "nl", "ru", "id", "pt", "pl", "ar", "sv", "he", "hu", "nb", "tr", "cs", "sk", "el", "ja" ]; return supportedLanguages; }