Codebase list node-moment / upstream/2.22.2+ds meteor / export.js
upstream/2.22.2+ds

Tree @upstream/2.22.2+ds (Download .tar.gz)

export.js @upstream/2.22.2+dsraw · history · 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) {
}