All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ml-modules.root.data-hub.5.datahub-singleton.mjs Maven / Gradle / Ivy

There is a newer version: 6.1.1
Show newest version
import DataHub from "/data-hub/5/datahub.mjs";

let dataHubInstance;

function instance(config = {}) {
  if (!dataHubInstance) {
    dataHubInstance = new DataHub(config);
  }
  return dataHubInstance;
}

export default {
  instance
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy