tlrobinson / narwhal

[DEPRECATED] A JavaScript standard library, package manager, and more.
http://narwhaljs.org/
372 stars 16 forks source link

throw StopIteration instead of new StopIteration() #78

Open tschaub opened 14 years ago

tschaub commented 14 years ago

In engines/rhino/lib/zip.js line 30:

throw new StopIteration();

should be

throw StopIteration;