hexo/node_modules/min-indent/index.js

11 lines
191 B
JavaScript
Raw Normal View History

2023-09-25 15:58:56 +08: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);
};