Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adrianlee44/is-left-padded
Is your string left padded
https://github.com/adrianlee44/is-left-padded
Last synced: 5 days ago
JSON representation
Is your string left padded
- Host: GitHub
- URL: https://github.com/adrianlee44/is-left-padded
- Owner: adrianlee44
- Created: 2016-03-24T01:37:26.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-03-24T05:16:41.000Z (over 8 years ago)
- Last Synced: 2024-10-03T11:18:31.073Z (about 1 month ago)
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## is-left-padded
Check if string is left padded.
## Install
```bash
$ npm install is-left-padded
```## Usage
```js
isLeftPadded = require('is-left-padded')isLeftPadded(' much pad')
// => trueisLeftPadded('such space')
// => false
```