11 lines
348 B
JavaScript
11 lines
348 B
JavaScript
"use strict";
|
|
/**
|
|
* Copyright (c) 2020, Microsoft Corporation (MIT License).
|
|
*/
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.getWorkerPipeName = void 0;
|
|
function getWorkerPipeName(conoutPipeName) {
|
|
return conoutPipeName + "-worker";
|
|
}
|
|
exports.getWorkerPipeName = getWorkerPipeName;
|
|
//# sourceMappingURL=conout.js.map
|