cscg24-guacamole

CSCG 2024 Challenge 'Guacamole Mashup'
git clone https://git.sinitax.com/sinitax/cscg24-guacamole
Log | Files | Refs | sfeed.txt

is-date.js (161B)


      1export default function isDate(input) {
      2    return (
      3        input instanceof Date ||
      4        Object.prototype.toString.call(input) === '[object Date]'
      5    );
      6}