UNPKG
randomvin
Version:
latest (0.0.1)
0.0.1
Generate a random vin from randomvin.com
randomvin
/
example.js
10 lines
(7 loc)
•
214 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
const
{ getRealVin, getFakeVin } =
require
(
"./"
);
getRealVin
() .
then
(
vin
=>
console
.
log
(vin)) .
catch
(
err
=>
console
.
log
(err));
getFakeVin
() .
then
(
vin
=>
console
.
log
(vin)) .
catch
(
err
=>
console
.
log
(err));