Skip to content
Snippets Groups Projects
SoundcloudScript.js 31.9 KiB
Newer Older
function dateToUnixSeconds(date) {
    if (!date) {
      return 0;
    }
    
    return Math.round(Date.parse(date) / 1000);
}

Koen's avatar
Koen committed
console.log('LOADED')