tdays

get days since trump was elected

Usage no npm install needed!

<script type="module">
  import tdays from 'https://cdn.skypack.dev/tdays';
</script>

README

t-days

get number of days of Trump presidency

about

📆 get "Trump day x"

source

function tDays () {
  var inauguration = new Date(2017, 0, 20)
  var now = new Date()
  return Math.floor((now - inauguration) / (1000 * 60 * 60 * 24)) + 1
}