UNPKG
random-topics
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
Returns random Topics!
github.com/Kimizukia/random-topics
Kimizukia/random-topics
random-topics
/
index.js
7 lines
(6 loc)
•
188 B
JavaScript
View Raw
1
2
3
4
5
6
7
function
topics
(
) {
let
topic =
require
(
'./topics.json'
).
topics
;
let
random = topic[
Math
.
floor
(
Math
.
random
() * topic.
length
)];
return
random; }
module
.
exports
=
topics
()