bookquotes
Version:
Collection of people's favorite quotes from books around the world
14 lines (9 loc) • 370 B
JavaScript
const testGetRandomLines = () => {
const favline = require("../index.js");
var myLine = favline.getRandomLine();
console.log("*********************************");
console.log("WE ARE GRAMMAR_NAZIS\n");
console.log("*********************************");
console.log("A random line I love- " + myLine);
};
exports.default = testGetRandomLines;