UNPKG

@studiometa/js-toolkit

Version:

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

10 lines (9 loc) • 384 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. * @return {string} * @link https://js-toolkit.studiometa.dev/utils/string/withTrailingCharacters.html */ export declare function withTrailingCharacters(string: string, characters: string): string;