Files
2016-01-27 19:46:55 +05:30

7 lines
188 B
JavaScript
Vendored

// 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) {
}