10 lines
342 B
JavaScript
10 lines
342 B
JavaScript
exports.algos = require('./algos')
|
|
exports.items = require('./items')
|
|
exports.helpers = require('./helpers')
|
|
|
|
// This is how we're exporting this module to the browser. A preferable way would be http://requirejs.org/docs/api.html#packages
|
|
// but I couldn't get that working
|
|
try {
|
|
window;
|
|
window.habitrpgShared = exports;
|
|
} catch(e) {} |