astro-ghostcms/.pnpm-store/v3/files/8d/8845e12dad7062b8f5a5ff3b653...

11 lines
191 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
'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);
};