UNPKG

@blitzjs/cli

Version:
13 lines (12 loc) 338 B
"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;