mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 16:33:15 +01:00
9 lines
229 B
JavaScript
9 lines
229 B
JavaScript
export default function capitalize(str) {
|
|
if (!str) return;
|
|
return str.charAt(0).toUpperCase() + str.slice(1);
|
|
}
|
|
|
|
export function decapitalize(str) {
|
|
if (!str) return;
|
|
return str.charAt(0).toLowerCase() + str.slice(1);
|
|
}
|