## cf-left-pad

String left pad.

## Install

```bash
$ npm install cf-left-pad
```

## Usage

```js
leftpad = require('cf-left-pad')

leftpad('foo', 5)
// => "  foo"

leftpad('foobar', 6)
// => "foobar"

leftpad(1, 2, 0)
// => "01"
```
