left-trim
v1.0.2
Published
Removes whitespace on the left
Downloads
19
Maintainers
Readme
left-trim
Removes whitespace on the left. Build with nan.
Install
# With npm
npm i left-trim
How to use
const leftTrim = require('left-trim');
leftTrim(' pizza ') // ~> 'pizza '
leftTrim(' hello world') // ~> 'hello world'