UNPKG

ascor

Version:

一些常用的简单的js工具

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