cscg24-guacamole

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

is-array.js (164B)


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