qcobjects
Advanced tools
Comparing version 2.5.111-beta to 2.5.112-beta
{ | ||
"name": "qcobjects", | ||
"version": "2.5.111-beta", | ||
"version": "2.5.112-beta", | ||
"description": "QCObjects is an Open-source framework that empowers full-stack developers to make micro-services and micro-frontends into an N-Tier architecture.", | ||
@@ -5,0 +5,0 @@ "main": "public/cjs/QCObjects.cjs", |
@@ -13,6 +13,7 @@ import { _import_ } from "./_import_"; | ||
( (name):any => { | ||
let r; | ||
let r:any; | ||
try { | ||
_import_ (name) | ||
.then ((m) => { | ||
(async () => { | ||
r = await _import_(name); | ||
})().then((m:any) => { | ||
r = (m && m.default) || m; | ||
@@ -19,0 +20,0 @@ }) |
Sorry, the diff of this file is not supported yet
4023945
34892