* Add new queue to twenty-server * Add triggers to zapier * Rename webhook operation * Use find one or fail * Use logger * Fix typescript templating * Add dedicated call webhook job * Update logging * Fix error handling
4 lines
112 B
TypeScript
4 lines
112 B
TypeScript
export const capitalize = (word: string): string => {
|
|
return word.charAt(0).toUpperCase() + word.slice(1);
|
|
};
|