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

https://github.com/sourcevault/whitespace

create whitespace string
https://github.com/sourcevault/whitespace

Last synced: 23 days ago
JSON representation

create whitespace string

Awesome Lists containing this project

README

          

**Install**

```
npm install @partially-applied/whitespace
```

**How to Use**

```livescript

whitespace = require '@partially-applied/whitespace'

whitespace 1 # " "
whitespace 2 # " "
whitespace 5 # " " [1]
whitespace 5 # " " returns cached string from [1]

```