UNPKG

@hedgewizard.dev/random-facts

Version:
12 lines (11 loc) 354 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getFact = getFact; const facts_1 = require("./facts"); /** * Returns a random dinosaur fact from the internal collection * @returns {string} A random dinosaur fact */ function getFact() { return facts_1.facts[Math.floor(Math.random() * facts_1.facts.length)]; }