Files
node-shiftstats/example.js
2018-04-25 21:40:31 -05:00

12 lines
299 B
JavaScript

const ShiftStats = require('./index')
let s = new ShiftStats()
// with promises
s.login().then(() => {
return s.divisionStandings(4702)
}).then(async (standings) => {
console.log(standings.teams)
// with async/await
console.log((await s.gameGoals(166658, 'home')).home_goals)
})