This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
Files
core/library/moment/meteor/export.js
2015-11-18 23:50:42 +01:00

7 lines
188 B
JavaScript

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