Initial commit
[yaffs-website] / node_modules / redent / index.js
1 'use strict';
2 var stripIndent = require('strip-indent');
3 var indentString = require('indent-string');
4
5 module.exports = function (str, count, indent) {
6         return indentString(stripIndent(str), indent || ' ', count || 0);
7 };