Skip to content
This repository was archived by the owner on Mar 5, 2021. It is now read-only.

Version 1.1.0

Choose a tag to compare

@avivkeller avivkeller released this 22 Feb 19:36
· 43 commits to main since this release

New features:

Bugs Fixed:

function getquestions(id) {
return new Promise(async(resolve, reject) => {
res = await got(`https://api.blooket.com/api/games?gameId=${id}\`)
questiondata = JSON.parse(res.body)
return resolve(questiondata)
});
}