Well, this is easy to detect with the operator.
This will be false because it is not the same function:
(function() {} === function() {})
Try using two autorun :
(Meteor.autorun === Tracker.autorun)
This returns true . So yes, this is just a pure alias.
However, only Tracker.autorun documented . I suspect some old API is left for compatibility ...
Let me check the Meteor code on GitHub !
File: deprecated.js
Meteor.autorun = Tracker.autorun;
This is in deprecated.js , it talks about things //Deprecated functions and some backward compatibility with Meteor 0.5.4. It seems pretty clear which one you should use.
You can find other old timers there, such as Deps ...
source share