Echo JS 0.11.0

<~>

lawrencealan 3659 days ago. link 1 point
your example, "var f  = function(){ ... }", is not an anonymous function.

to get function names just add a function name when utilizing inline functions.

http://jsfiddle.net/6AXfV/

e.x: 
(function super_puper() { throw new Error(); })(); 

results in:

Uncaught Error (index):23
super_puper (index):23
window.onload
timoxley 3659 days ago. link 1 point
excellent! I wonder if this could be used across all of node core /lib?