cscg24-guacamole

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

is-undefined.js (76B)


      1export default function isUndefined(input) {
      2    return input === void 0;
      3}