# Random Vin

Gets either a random real or fake vin from randomvin.com

## Usage

```js
import { getRealVin, getFakeVin } from "randomvin";

getRealVin()
  .then(vin => console.log(vin))
  .catch(err => console.log(err));

getFakeVin()
  .then(vin => console.log(vin))
  .catch(err => console.log(err));
```

## Contributing

Any PR's welcome

## Liscense

MIT
