UNPKG

@patchworkdev/common

Version:

Patchwork Development Kit

8 lines (7 loc) 265 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ind = ind; function ind(numOfSpaces, str) { const indentation = ' '.repeat(numOfSpaces); return str.split('\n').map(line => line ? indentation + line : line).join('\n'); }