@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.
@@ -629,7 +629,12 @@ function parseChainError(chain, errorMessage) {
629
629
  function isBrowser() {
630
630
  return typeof window !== "undefined" && typeof window.document !== "undefined";
631
631
  }
632
- var dynamicImport = new Function("specifier", "return import(specifier)");
632
+ async function dynamicImport(specifier) {
633
+ return import(
634
+ /* webpackIgnore: true */
635
+ specifier
636
+ );
637
+ }
633
638
  async function canUseNativeWdk() {
634
639
  if (isBrowser()) {
635
640
  return false;