I would expect that `foo/**` matches everything inside the directory `foo`, but not the directory itself. ```js const minimatch = require("minimatch"); minimatch("foo/", "foo/**"); // true, but it should be false. ```