a
doum
2 天以前 307960b07d8cb122d9de0c8267b8cb7a63cfc605
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);
};