function toDate()

in src/app/components/BuidStatus.js [16:19]


function toDate(tcTimestamp) {
  const jsTimestamp = tcTimestamp.replace(TC_TIMESTAMP_REGEXP, '$1-$2-$3T$4:$5:$6$7');
  return new Date(jsTimestamp);
}