pleroma/packages/pl-fe/src/utils/strings.ts

6 lines
191 B
TypeScript
Raw Normal View History

/** Capitalize the first letter of a string. */
// https://stackoverflow.com/a/1026087
const capitalize = (str: string) => str.charAt(0).toUpperCase() + str.slice(1);
export { capitalize };