@muze-nl/jsfs-solid 0.1.8 → 0.1.9

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.
package/dist/browser.js CHANGED
@@ -14691,9 +14691,11 @@
14691
14691
  #client;
14692
14692
  #path;
14693
14693
  constructor(metroClient, path = "/", solidConfiguration = {}) {
14694
- this.#client = client(metroClient).with(browser_default.oidcmw(solidConfiguration)).with(src_default3(solidConfiguration));
14695
- this.#path = new Path(path);
14696
- super(this.#client, this.#path);
14694
+ metroClient = client(metroClient).with(browser_default.oidcmw(solidConfiguration)).with(src_default3(solidConfiguration));
14695
+ path = new Path(path);
14696
+ super(metroClient, path);
14697
+ this.#client = metroClient;
14698
+ this.#path = path;
14697
14699
  }
14698
14700
  get name() {
14699
14701
  return "SolidAdapter";