UNPKG

steadybit

Version:

Command-line interface to interact with the Steadybit API

12 lines 367 B
"use strict"; // SPDX-License-Identifier: MIT // SPDX-FileCopyrightText: 2022 Steadybit GmbH Object.defineProperty(exports, "__esModule", { value: true }); exports.indent = indent; function indent(s, numberOfCharacters) { return s .split('\n') .map(s => ' '.repeat(numberOfCharacters) + s) .join('\n'); } //# sourceMappingURL=indent.js.map