On Tue, Apr 3, 2012 at 22:05, Igor Carvalho <[email protected]> wrote: > I have an error, the setTimeout returns this: > > > timers.js:223 > callback.apply(timer, args); > ^ > TypeError: Cannot call method 'apply' of undefined > at Timer.ontimeout (timers.js:223:14)
You're calling setTimeout() with something that's not a function, e.g. setTimeout(obj.fun, 42) where obj.fun is an undefined property. -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
