Files
crawlab/frontend/crawlab-ui/src/utils/string.ts

7 lines
164 B
Go

export const capitalize = (str: string): string => {
if (!str) return '';
const arr = str.split('');
arr[0] = arr[0].toUpperCase();
return arr.join('');
};