aboutsummaryrefslogtreecommitdiffstats
path: root/library/moment/meteor/export.js
blob: 2600fce1994410f98162643b9f6d9706239f858f (plain) (blame)
1
2
3
4
5
6
// moment.js makes `moment` global on the window (or global) object, while Meteor expects a file-scoped global variable
moment = this.moment;
try {
    delete this.moment;
} catch (e) {
}