UNPKG
skroepp
Version:
latest (1.0.0)
1.0.0
get random sad quotes from fahri skroepp
skroepp
/
index.js
12 lines
(8 loc)
•
210 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
const
skroepp =
require
(
'./data/quote.json'
);
exports
.
getRandom
=
() =>
{
let
rand =
Math
.
floor
(
Math
.
random
() * skroepp.
length
);
return
skroepp[rand] }
exports
.
getAll
=
() =>
{
return
skroepp; }