File size: 278 Bytes
c32229e | 1 2 3 4 5 6 7 8 9 10 | "use strict";
/**
* Copyright (c) 2020, Microsoft Corporation (MIT License).
*/
Object.defineProperty(exports, "__esModule", { value: true });
function getWorkerPipeName(conoutPipeName) {
return conoutPipeName + "-worker";
}
exports.getWorkerPipeName = getWorkerPipeName;
|