@studiometa/js-toolkit
Version:
A set of useful little bits of JavaScript to boost your project! 🚀
10 lines (9 loc) • 402 B
TypeScript
/**
* Remove the given characters from the start of the given string.
*
* @param {string} string The string to modify.
* @param {string} characters The characters to remove from the start.
* @return {string}
* @link https://js-toolkit.studiometa.dev/utils/string/withoutLeadingCharacters.html
*/
export declare function withoutLeadingCharacters(string: string, characters: string): string;