mirror of
https://github.com/fspc/Yellow-Bike-Database.git
synced 2025-02-23 09:13:23 -05: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) {
|
|
}
|