UNPKG
climb-framework
Version:
latest (1.0.1)
1.0.1
1.0.0
climb front framework
climb-framework
/
filters
/
trim.js
11 lines
(9 loc)
•
211 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** * 去除首尾空格 *
@param
{
[string]
} string [字符串] *
@return
{
[string]
} [返回处理后数据] */
const
trim
= (
string
) => {
return
string
.
toString
().
replace
() }
export
default
trim