UNPKG

@studiometa/js-toolkit

Version:

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

9 lines (8 loc) • 304 B
/** * Add the given characters to the end of the given string. * * @param {string} string The string to modify. * @param {string} characters The characters to add to the end. * @returns {string} */ export declare function withTrailingCharacters(string: string, characters: string): string;