react-code-dataset / wp-calypso /client /state /selectors /get-current-locale-variant.js
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { get } from 'lodash';
import 'calypso/state/ui/init';
/**
* Gets the current ui locale variant
* @param {Object} state - global redux state
* @returns {string?} current state value
*/
export default function getCurrentLocaleVariant( state ) {
return get( state, 'ui.language.localeVariant', null );
}