@remax/framework-shared
Version:
使用真正的 React 构建跨平台小程序
15 lines (14 loc) • 404 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.formatDisplayName = void 0;
function formatDisplayName(name) {
return name
.replace(/-(.)/g, function ($1) {
return $1.toUpperCase();
})
.replace(/-/g, '')
.replace(/^(.)/, function ($1) {
return $1.toUpperCase();
});
}
exports.formatDisplayName = formatDisplayName;
;