UNPKG

@qntm-code/utils

Version:

A collection of useful utility functions with associated TypeScript types. All functions have been unit tested.

7 lines (6 loc) 248 B
/** * Capitalises the first n characters of a string * @param value the string to capitalise * @param number the number of characters to capitalise (default 1) */ export declare function capitaliseFirst(value: string, number?: number): string;