lib/module/moment.js

Summary

Maintainability
A
0 mins
Test Coverage
// first check if moment.js is already loaded in the browser window, if so,
// use this instance. Else, load via commonjs.
module.exports = (typeof window !== 'undefined') && window['moment'] || require('moment');