UNPKG

skroepp

Version:

get random sad quotes from fahri skroepp

12 lines (8 loc) 210 B
const skroepp = require('./data/quote.json'); exports.getRandom = () => { let rand = Math.floor(Math.random() * skroepp.length); return skroepp[rand] } exports.getAll = () => { return skroepp; }