Is your string left padded?
npm install is-left-paddedCheck if string is left padded.
``bash`
$ npm install is-left-padded
`js
isLeftPadded = require('is-left-padded')
isLeftPadded(' much pad')
// => true
isLeftPadded('such space')
// => false
``