Skip to content

Instantly share code, notes, and snippets.

View Gargaj's full-sized avatar
🛁
If you hard. Then you hard.

Gargaj

🛁
If you hard. Then you hard.
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;