blob: 2b9202052d33ce6cee4cb6149260675a2fac0b7a (
about) (
plain)
1
2
3
4
5
6
7
|
'use strict';
var stripIndent = require('strip-indent');
var indentString = require('indent-string');
module.exports = function (str, count, indent) {
return indentString(stripIndent(str), indent || ' ', count || 0);
};
|