JSFiddle - React, Tailwind, and code Playground

by Kai

JavaScript

function to_epoch (date) {
    // TODO: Validate formatting
    return Math.round(new Date(date) / 1000.0);
}

alert( to_epoch('2011-01-30T23:33:20+00:00') );