jodit
Version:
Jodit is an awesome and useful wysiwyg editor with filebrowser
26 lines (25 loc) • 807 B
JavaScript
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
/**
* @module helpers/utils
*/
import { globalDocument } from "../../constants.js";
import { isString } from "../checker/is-string.js";
/**
* Try define user language
*/
export const defaultLanguage = (language, defaultLanguage = 'en') => {
if (language !== 'auto' && isString(language)) {
return language;
}
if (globalDocument.documentElement && globalDocument.documentElement.lang) {
return globalDocument.documentElement.lang;
}
if (navigator.language) {
return navigator.language.substring(0, 2);
}
return defaultLanguage;
};