123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
-
-
- clog("EXP_API")
-
- function exp_api_dbg(n=""){
- try {
-
- clog("exp_api_dbg.",window.$)
- clog("exp_api_dbg",n,jc({
-
- glob_dbg: window.glob_dbg,
- glob_dev_fns: window.glob_dev_fns,
- glob_dev_hooks: window.glob_dev_hooks,
- glob_mx: window.glob_mx,
- glob_orig: window.glob_orig,
- glob_orig_v2: window.glob_orig_v2,
- glob_react: window.glob_react,
- "$":window.$ || "$",
- "deep_prop":window.deep_prop,
- })
-
- )
-
- } catch(e){
- clog("exp_api_dbg err:",e)
- }
-
- }
-
- fn_name_template = {
- fn:"",
- fn:"",
- root:window,
- }
-
-
-
-
- // fn_proto
- /*
- {
- [["fn":"","root":{},]|"",]
- }
- */
-
-
-
- function dev_fn(fn_arg,o){
- var fn
- // clog("coninc...")
- try{
-
-
- if (typeof(fn_arg)=="object"){
- if (Array.isArray(fn_arg)) {
- // deep_prop()
- } else if (fn_arg){
-
- }
- } else if (typeof(fn_arg)=="string"){
- fn =window.glob_dev_fns[fn_arg]
- }
- // clog("coninc...",fn,fn_arg)
- if (fn){
- return fn(o,fn_arg)
- }
- } catch (err) { clog("dev_fn err:",err)}
- // fn_arg =
-
- }
-
- exp_api_dbg()
|