wix-style-react
Version:
wix-style-react
14 lines (12 loc) • 540 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var convertFromUxLangToCss = exports.convertFromUxLangToCss = function convertFromUxLangToCss() {
var ux = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
return ux.toLowerCase().replace('.', '_');
};
var convertFromCssToUxLang = exports.convertFromCssToUxLang = function convertFromCssToUxLang() {
var css = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
return css.toUpperCase().replace('_', '.');
};