.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / node_modules / redent / index.js
1 'use strict';
2 const stripIndent = require('strip-indent');
3 const indentString = require('indent-string');
4
5 module.exports = (str, count, indent) => indentString(stripIndent(str), count || 0, indent);