You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm getting an interesting error when the module is loaded. Tested on two machines. Both are running Node v0.10.26.
In Enumerable there is a call to _each that isn't working. It's line 16. Error states roughly Object has no method _each. I managed to get past that point my replacing this._each with an ugly Object.keys(this).forEach.
After this though there was an error that the Hash module couldn't be found. After bugging around with that for a bit I could not resolve it.
I guess my main question is if there are any dependencies we need to have installed first besides vanilla Node?
The text was updated successfully, but these errors were encountered:
Hi, I'm getting an interesting error when the module is loaded. Tested on two machines. Both are running
Node v0.10.26
.In Enumerable there is a call to _each that isn't working. It's line 16. Error states roughly
Object has no method _each
. I managed to get past that point my replacingthis._each
with an uglyObject.keys(this).forEach
.After this though there was an error that the Hash module couldn't be found. After bugging around with that for a bit I could not resolve it.
I guess my main question is if there are any dependencies we need to have installed first besides vanilla Node?
The text was updated successfully, but these errors were encountered: