Hi, I was trying to use micromatch with the format option to match against a property of an object I was passing. However, I quickly hit a snag due to the first conditional at the top of picomatch.test -
https://github.com/micromatch/picomatch/blob/master/lib/picomatch.js#L116
Is it possible to move that further down in the function, after format (if specified) is applied? The use case seems pretty sane - pass an array of objects to micromatch() with a custom format callback which just grabs a property from the object, and the returned matches are the original objects.