We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0898bd commit 14bb4a5Copy full SHA for 14bb4a5
src/javaxt/express/Config.java
@@ -46,6 +46,18 @@ public JSONValue get(String key){
46
}
47
48
49
+ //**************************************************************************
50
+ //** get
51
52
+ /** Returns a nested value associated with the given keys
53
+ */
54
+ public JSONValue get(String... path){
55
+ synchronized(config){
56
+ return config.get(0).get(path);
57
+ }
58
59
+
60
61
//**************************************************************************
62
//** set
63
0 commit comments