onilabs / stratifiedjs

Oni StratifiedJS (previously Apollo)
http://onilabs.com/stratifiedjs
Other
231 stars 22 forks source link

Error http.script #5

Closed kevsmt closed 13 years ago

kevsmt commented 13 years ago

Im having a problem loading a script:

try { require('apollo:http').script('/support/vendor/json2.js'); } catch(e) { console.log("ERROR(0)" + e); }

(Underlying exception: Could not load script: '[object Arguments]'.)

afri commented 13 years ago

Oops, looks like I broke trunk with one of my recent checkins. Investigating...

afri commented 13 years ago

It's fixed now - turned out to be bustage related to our move from common.isArray to Array.isArray. The latter is stricter doesn't classify "arguments" as an array (rightly so).

Thanks for reporting!

kevsmt commented 13 years ago

Thanks Alex