Improved case switching for node/browsers

This commit is contained in:
Matt 2016-04-12 00:38:01 -04:00
parent 962fe68632
commit b9e75c983d
1 changed files with 10 additions and 10 deletions

View File

@ -361,19 +361,19 @@ mscript.tests = function tests () {
console.timeEnd('Tests took'); console.timeEnd('Tests took');
}; };
if (!module.parent) { if (typeof module !== 'undefined' && !module.parent) {
if (typeof process !== 'undefined') { //node script
fs = require('fs'); fs = require('fs');
input = process.argv[2]; input = process.argv[2];
mscript.init(); mscript.init();
} else if (typeof module !== 'undefined' && module.parent) {
//module
fs = require('fs');
module.exports = mscript;
} else { } else {
//web //web
} }
} else {
console.log('module here');
fs = require('fs');
module.exports = mscript;
}
/* /*