mirror of
https://github.com/itflow-org/itflow
synced 2026-03-03 12:24:51 +00:00
7 lines
188 B
JavaScript
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) {
|
|
}
|