Veranstaltungen-APP/vendor/swagger-api/swagger-ui/docker/configurator/helpers.js

13 lines
271 B
JavaScript

module.exports.indent = function indent(str, len, fromLine = 0) {
return str
.split("\n")
.map((line, i) => {
if (i + 1 >= fromLine) {
return `${Array(len + 1).join(" ")}${line}`
} else {
return line
}
})
.join("\n")
}