mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
`var x = function () {}` creates a reference to an anonymous function while `var x = function x () {}` creates a reference to a named function. I believe that `function x () {}` is shorthand for the latter.