File size: 191 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 |
'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);
};
|