@zubari/sdk 0.5.9 → 0.5.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -574,7 +574,12 @@ function parseChainError(chain, errorMessage) {
574
574
  function isBrowser() {
575
575
  return typeof window !== "undefined" && typeof window.document !== "undefined";
576
576
  }
577
- var dynamicImport = new Function("specifier", "return import(specifier)");
577
+ async function dynamicImport(specifier) {
578
+ return import(
579
+ /* webpackIgnore: true */
580
+ specifier
581
+ );
582
+ }
578
583
  async function canUseNativeWdk() {
579
584
  if (isBrowser()) {
580
585
  return false;