"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.dedent = void 0;
function dedent(strings, ...args) {
return strings
.map((str, idx) => str + String(args[idx] || ""))
.join("")
.split("\n")
.map((line) => line.trim())
.join("\n");
}
exports.dedent = dedent;