Merge branch 'pr-467'

This commit is contained in:
Rico Sta. Cruz 2018-03-23 08:03:07 +08:00
commit f835036173
1 changed files with 3 additions and 3 deletions

View File

@ -206,9 +206,9 @@ _.padRight(...)
### Trim
```js
_.trim(' str ')
_.trimLeft(' str ')
_.trimRight(' str ')
_.trim(' str ') // → 'str'
_.trimLeft(' str ') // → 'str '
_.trimRight(' str ') // → ' str'
```
### Etc