UNPKG
@ungap/trim
Version:
latest (0.2.0)
0.2.0
0.1.1
0.1.0
An trim polyfill for legacy browsers.
github.com/ungap/trim
ungap/trim
@ungap/trim
/
index.js
4 lines
(3 loc)
•
114 B
JavaScript
View Raw
1
2
3
4
var
trim =
''
.
trim
||
/* istanbul ignore next */
function
(
) {
return
String
(
this
).
replace
(
/^\s+|\s+/g
,
''
); };