UNPKG

codetrix

Version:

A lightweight lodash-style utility library

11 lines (10 loc) 224 B
/** * Reverses a given string. * * @param str - The string to reverse. * @returns The reversed string. * * @example * reverseString('hello'); // 'olleh' */ export declare function reverseString(str: string): string;