UNPKG

@azure/event-hubs

Version:
11 lines 347 B
// 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