clean up and fix some errors
This commit is contained in:
17
ts/index.ts
17
ts/index.ts
@@ -8,24 +8,9 @@ var plugins = {
|
||||
}
|
||||
var smartenv:any = {}; //create smartenv object
|
||||
|
||||
smartenv.getEnv = SmartenvEnvironment.init();
|
||||
SmartenvEnvironment.init(smartenv);
|
||||
smartenv.obs = SmartenvObjectStorage.init();
|
||||
|
||||
|
||||
/* ----------------------------------------- *
|
||||
* ----- print info ------------------------ *
|
||||
* ----------------------------------------- */
|
||||
smartenv.printEnv = function() {
|
||||
if (smartenv.getEnv().isNode) {
|
||||
var smartenvVersion = require("./package.json").version;
|
||||
plugins.beautylog.log("node version is " + smartenv.getEnv().nodeVersion + " and smartenv version is " + smartenvVersion);
|
||||
} else {
|
||||
plugins.beautylog.log("browser is " + smartenv.getEnv().userAgent)
|
||||
}
|
||||
plugins.beautylog.log("the smartenv registration store currently holds the following properties:");
|
||||
console.log(Object.getOwnPropertyNames(smartenv.obs.getComplete).sort());
|
||||
};
|
||||
|
||||
|
||||
|
||||
module.exports = smartenv;
|
||||
|
Reference in New Issue
Block a user