smartenv.exportEnv and smartenv.importEnv added

This commit is contained in:
Philipp Kunz
2015-11-28 14:49:44 +01:00
parent f994c34bc7
commit 0f784e2d74
8 changed files with 30 additions and 3 deletions

View File

@@ -29,6 +29,14 @@ smartenv.register = function(objectArg,paramName = "undefined") {
};
smartenv.get = function(keyName) {
return smartenv.items[keyName];
}
};
smartenv.exportEnv = function() {
};
smartenv.importEnv = function() {
};
module.exports = smartenv;