### Package to replace `indent-string` ### Suggested replacement(s) ```js const indentString = (string, count = 1, indent = ' ') => string.replace(/^(?!\s*$)/gm, indent.repeat(count)); ``` ### Manifest type micro-utility (tiny utility replaceable with native code or removal) ### Rationale inlinable ### Availability _No response_ ### Code example (optional) ```js ```