UNPKG

redent

Version:

Strip redundant indentation and indent the string

7 lines (5 loc) 210 B
import stripIndent from 'strip-indent'; import indentString from 'indent-string'; export default function redent(string, count = 0, options = {}) { return indentString(stripIndent(string), count, options); }