summaryrefslogtreecommitdiff
path: root/bin/wiki/ImportarDesdeURL/node_modules/redent/index.js
blob: 0d3303b0404369d936ece19626951c9a090ed432 (plain)
1
2
3
4
5
'use strict';
const stripIndent = require('strip-indent');
const indentString = require('indent-string');

module.exports = (str, count, indent) => indentString(stripIndent(str), count || 0, indent);