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?
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._eachwith 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?