mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-04-14 19:56:23 +00:00
9 lines
227 B
JavaScript
9 lines
227 B
JavaScript
module.exports = require('./script/index');
|
|
var _ = require('lodash');
|
|
var moment = require('moment');
|
|
|
|
if (typeof window !== 'undefined') {
|
|
window.habitrpgShared = module.exports;
|
|
window._ = _;
|
|
window.moment = moment;
|
|
}
|