class BleReceive { constructor() { this.StorageKey = "linkedDevices"; } } let instance = null; export default { getBleReceive: function(found, receive) { if (!instance) { instance = new BleReceive(); } return instance; } }