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