dsql-admin/dsql-app/package-shared/shell/utils/slugToCamelTitle.js
Benjamin Toby 8b7ea057d0 Updates
2024-12-06 14:24:26 +01:00

19 lines
493 B
JavaScript
Executable File

// @ts-check
module.exports = function slugToCamelTitle(/** @type {String} */ text) {
if (text) {
let addArray = text.split("-").filter((item) => item !== "");
let camelArray = addArray.map((item) => {
return (
item.substr(0, 1).toUpperCase() + item.substr(1).toLowerCase()
);
});
let parsedAddress = camelArray.join(" ");
return parsedAddress;
} else {
return null;
}
};