@azure/event-hubs
Version:
Azure Event Hubs SDK for JS.
11 lines • 347 B
JavaScript
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import * as os from "os";
/**
* Returns information about the platform this function is being run on.
* @internal
*/
export function getRuntimeInfo() {
return `NODE-VERSION ${process.version}; ${os.type()} ${os.release()}`;
}
//# sourceMappingURL=runtimeInfo.js.map