DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
191 Bytes
'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);
};