so I get an error on my console when importing and calling the JsStore library object from within a service worker.
importScripts('https://cdn.jsdelivr.net/npm/[email protected]/dist/jsstore.min.js');
importScripts('https://cdn.jsdelivr.net/npm/[email protected]/dist/jsstore.worker.min.js');
var connection = new JsStore.Connection();
console.log(connection);
This gives a console error:
Uncaught TypeError: JsStore is not a constructor
Documentation which I followed.