corrade-nucleus-nucleons

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 19  →  ?path2? @ 20
/script-kiddie/002_script_kiddie/script-kiddie/node_modules/config-chain/test/get.js
@@ -0,0 +1,15 @@
var cc = require("../");
 
var chain = cc()
, name = "forFun";
 
chain
.add({
__sample:"for fun only"
}, name)
.on("load", function() {
//It throw exception here
console.log(chain.get("__sample", name));
//But if I drop the name param, it run normally and return as expected: "for fun only"
//console.log(chain.get("__sample"));
});