Project Init

This commit is contained in:
Muluhabt
2026-05-29 15:23:46 +03:00
commit 2fbc557aac
67387 changed files with 6063341 additions and 0 deletions

17
node_modules/es-toolkit/dist/string/reverseString.d.ts generated vendored Normal file
View File

@@ -0,0 +1,17 @@
//#region src/string/reverseString.d.ts
/**
* Reverses a given string.
*
* This function takes a string as input and returns a new string that is the reverse of the input.
*
* @param {string} value - The string that is to be reversed.
* @returns {string} - The reversed string.
*
* @example
* const reversedStr1 = reverseString('hello') // returns 'olleh'
* const reversedStr2 = reverseString('PascalCase') // returns 'esaClacsaP'
* const reversedStr3 = reverseString('foo 😄 bar') // returns 'rab 😄 oof'
*/
declare function reverseString(value: string): string;
//#endregion
export { reverseString };