mirror of
https://github.com/S2-/gitlit
synced 2025-08-04 05:10:05 +02:00
remove node_modules
This commit is contained in:
16
app/node_modules/strip-indent/index.js
generated
vendored
16
app/node_modules/strip-indent/index.js
generated
vendored
@@ -1,16 +0,0 @@
|
||||
'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;
|
||||
};
|
Reference in New Issue
Block a user