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

View File

@@ -0,0 +1,19 @@
const require_lowerFirst = require("../../string/lowerFirst.js");
const require_toString = require("../util/toString.js");
//#region src/compat/string/lowerFirst.ts
/**
* Converts the first character of string to lower case.
*
* @param {string} str - The string that is to be changed
* @returns {string} - The converted string.
*
* @example
* const convertedStr1 = lowerCase('fred') // returns 'fred'
* const convertedStr2 = lowerCase('Fred') // returns 'fred'
* const convertedStr3 = lowerCase('FRED') // returns 'fRED'
*/
function lowerFirst(str) {
return require_lowerFirst.lowerFirst(require_toString.toString(str));
}
//#endregion
exports.lowerFirst = lowerFirst;