@studiometa/js-toolkit
Version:
A set of useful little bits of JavaScript to boost your project! 🚀
9 lines (8 loc) • 320 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.
* @returns {string}
*/
export declare function withoutLeadingCharacters(string: string, characters: string): string;