Skip to content

Instantly share code, notes, and snippets.

View Gargaj's full-sized avatar
🛁
Oh Don Piano, Why I Eyes Ya

Gargaj

🛁
Oh Don Piano, Why I Eyes Ya
View GitHub Profile
function Cue(albumArtist, title, tracks) {
this.PERFORMER = albumArtist;
this.TITLE = title;
this.TRACKS = tracks;
};
function Track(trackNumber, artist, title, offset) {
this.TRACK = trackNumber + ' AUDIO';
this.TITLE = title;