UNPKG
js-wrench
Version:
latest (1.3.1)
1.3.1
1.3.0
1.2.2
1.2.1
JS函数库
js-wrench
/
d.ts
/
modules
/
toLowerCase.d.ts
10 lines
(9 loc)
•
305 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
/** *
@description
大写转换成小写 * *
@param
{
string
} str 需要被转换的字符串 *
@return
{
*
} {
string
} 一个新的字符串, 转换为小写的字符串 *
@example
toLowerCase("ABC") => "abc" */
declare
const
toLowerCase
:
(
str
:
string
) =>
string
;
export
default
toLowerCase;