Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « strip-indent « node_modules - github.com/austingebauer/devise.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8f8f4f444c82a66faf19f3ae256ae43055ee78cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
'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;
};