What is the ** glob character?

前端 未结 4 1398
野趣味
野趣味 2020-12-01 02:49

I have this path in my react gulpfile:

var path = {
  HTML: \'src/index.html\',
  ALL: [\'src/js/*.js\', \'src         


        
4条回答
  •  感动是毒
    2020-12-01 03:02

    ** matches any character including a forward-slash /
    * matches any character except a forward-slash (to match just the file or directory name)

提交回复
热议问题