UNPKG

charlike

Version:

Small, fast, simple and streaming project scaffolder for myself, but not only. Supports hundreds of template engines through the @JSTransformers API or if you want custom `render` function passed through options

17 lines (12 loc) 320 B
'use strict'; module.exports = function (str) { var match = str.match(/^[ \t]*(?=\S)/gm); if (!match) { return str; } var indent = Math.min.apply(Math, match.map(function (el) { return el.length; })); var re = new RegExp('^[ \\t]{' + indent + '}', 'gm'); return indent > 0 ? str.replace(re, '') : str; };