steadybit
Version:
Command-line interface to interact with the Steadybit API
11 lines • 419 B
JavaScript
;
// SPDX-License-Identifier: MIT
// SPDX-FileCopyrightText: 2022 Steadybit GmbH
Object.defineProperty(exports, "__esModule", { value: true });
exports.toTwoColumns = toTwoColumns;
function toTwoColumns(key, expectedMaximumKeyLength, value) {
const targetPadLength = expectedMaximumKeyLength + 3;
key = `${key}:`;
return key.padEnd(targetPadLength) + value;
}
//# sourceMappingURL=columns.js.map