is-glob icon indicating copy to clipboard operation
is-glob copied to clipboard

isGlob('?') returns false

Open felix9 opened this issue 2 years ago • 0 comments

This seems wrong to me?

In particular, it's causing fastGlob("?/*") to fail.

mkdir a
touch a/test
node -p 'require("fast-glob").sync("?/test")'
# prints []
node -p 'require("fast-glob").sync("{?,?}/test")'
# prints [ 'a/test' ]

felix9 avatar Feb 18 '23 23:02 felix9