Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MR414N-ID
GitHub Repository: MR414N-ID/botku2
Path: blob/master/node_modules/@bochilteam/scraper/lib/esm/texts/truth.js
1126 views
1
import got from 'got';
2
export let truthjson = [];
3
export default async function truth() {
4
if (!truthjson.length) {
5
truthjson = await got('https://raw.githubusercontent.com/BochilTeam/database/master/kata-kata/truth.json').json();
6
}
7
return truthjson[Math.floor(truthjson.length * Math.random())];
8
}
9
//# sourceMappingURL=truth.js.map
10