@grabbit-labs/dynafetch 0.2.6 → 0.2.7

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.
Binary file
Binary file
Binary file
Binary file
Binary file
package/dist/index.js CHANGED
@@ -829,9 +829,11 @@ function shouldSkipDynamicScriptUrl(url, pageUrl, policy) {
829
829
  // ../../src/phantom/execute.ts
830
830
  var esbuildModulePromise = null;
831
831
  var esbuildRefCount = 0;
832
+ var runtimeImport = new Function("specifier", "return import(specifier)");
833
+ var ESBUILD_MODULE_NAME = Buffer.from("ZXNidWlsZA==", "base64").toString("utf8");
832
834
  async function acquireEsbuildModule() {
833
835
  if (!esbuildModulePromise) {
834
- esbuildModulePromise = import("esbuild");
836
+ esbuildModulePromise = runtimeImport(ESBUILD_MODULE_NAME);
835
837
  }
836
838
  esbuildRefCount++;
837
839
  try {