@azure/core-amqp
Version:
Common library for amqp based azure sdks like @azure/event-hubs.
10 lines • 310 B
JavaScript
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* Checks whether a network connection is detected.
* @internal
*/
export function checkNetworkConnection(_host) {
return Promise.resolve(globalThis.navigator.onLine);
}
//# sourceMappingURL=checkNetworkConnection-web.mjs.map