cscg24-guacamole

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

some.js (394B)


      1var some;
      2if (Array.prototype.some) {
      3    some = Array.prototype.some;
      4} else {
      5    some = function (fun) {
      6        var t = Object(this),
      7            len = t.length >>> 0,
      8            i;
      9
     10        for (i = 0; i < len; i++) {
     11            if (i in t && fun.call(this, t[i], i, t)) {
     12                return true;
     13            }
     14        }
     15
     16        return false;
     17    };
     18}
     19
     20export { some as default };