mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Some package code is loaded in browsers, which may fail to parse code which uses 'return' or 'throw' as a method name. We used to inconsistently use fut.ret for this purpose; instead, just consistently use fut['return'] and fut['throw']. We don't bother to do this in tools code which is definitely never run outside of Node. Also remove some unused requires. Fixes #1222.