@azure/event-hubs
Version:
Azure Event Hubs SDK for JS.
15 lines • 514 B
JavaScript
;
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
Object.defineProperty(exports, "__esModule", { value: true });
exports.getRuntimeInfo = getRuntimeInfo;
const tslib_1 = require("tslib");
const os = tslib_1.__importStar(require("os"));
/**
* Returns information about the platform this function is being run on.
* @internal
*/
function getRuntimeInfo() {
return `NODE-VERSION ${process.version}; ${os.type()} ${os.release()}`;
}
//# sourceMappingURL=runtimeInfo.js.map