UNPKG

steadybit

Version:

Command-line interface to interact with the Steadybit API

11 lines 419 B
"use strict"; // 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