UNPKG

ascor

Version:

一些常用的简单的js工具

9 lines (7 loc) 212 B
#### trim > 去除字符串首尾空格、制表符、回车 ```javascript import { trim } from "ascor"; trim(" something "); // "something" trim(" some thing "); // "some thing" ```