Skip to content
Snippets Groups Projects
index.js 207 B
Newer Older
  • Learn to ignore specific revisions
  • 'use strict';
    const stripIndent = require('strip-indent');
    const indentString = require('indent-string');
    
    
    Yadd's avatar
    Yadd committed
    module.exports = (string, count = 0, options) => indentString(stripIndent(string), count, options);