parcoursup/node_modules/min-indent/index.js
lalBi94 7bc56c09b5 $
2023-03-05 13:23:23 +01:00

11 lines
191 B
JavaScript

'use strict';
module.exports = string => {
const match = string.match(/^[ \t]*(?=\S)/gm);
if (!match) {
return 0;
}
return match.reduce((r, a) => Math.min(r, a.length), Infinity);
};