UNPKG

@studiometa/js-toolkit

Version:

A set of useful little bits of JavaScript to boost your project! 🚀

9 lines (8 loc) • 334 B
/** * Remove the given characters to the start of the given string recursively. * * @param {string} string The string to modify. * @param {string} characters The characters to add to the start. * @returns {string} */ export declare function withoutLeadingCharactersRecursive(string: string, characters: string): string;