`strict` is disabled by default, but JSDoc comment says otherwise
tgrajewski opened this issue · 0 comments
tgrajewski commented
Just a minor thing, the JSDoc comment says:
/*
* @param {Boolean} [opts.strict=true] be laissez faire about mutiple slashes
*/
But the function signature has this argument set do false
:
function globrex(glob, {extended = false, globstar = false, strict = false, filepath = false, flags = ''} = {})