Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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')
// => true

isLeftPadded('such space')
// => false
```