UNPKG

nexgen-magic

Version:

Get the current song played on magic.co.nz

18 lines (14 loc) 375 B
var Nexgen = require('nexgen'); module.exports = { nexgen: Nexgen('http://www.magic.co.nz/Portals/0/Inbound/NowPlaying/NowPlaying.aspx'), current: function (cb) { this.nexgen.current(function (track) { cb(track); }) }, next: function (cb) { this.nexgen.next(function (track) { cb(track); }) } };