index.js 207 B

12345
  1. 'use strict';
  2. const stripIndent = require('strip-indent');
  3. const indentString = require('indent-string');
  4. module.exports = (string, count = 0, options) => indentString(stripIndent(string), count, options);