/path/to/file/**/*.js
matches any number of directories between /path/to/file/
and /*.js
. As opposed to /path/to/file/*/*.js
, which matches a single directory between /path/to/file/
and /*.js
.
/path/to/file/**/*.js
matches any number of directories between /path/to/file/
and /*.js
. As opposed to /path/to/file/*/*.js
, which matches a single directory between /path/to/file/
and /*.js
.