cscg24-guacamole

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

has-own-prop.js (100B)


      1export default function hasOwnProp(a, b) {
      2    return Object.prototype.hasOwnProperty.call(a, b);
      3}