UNPKG

188 BJavaScriptView Raw
1const extglob = require('extglob')
2
3module.exports.extglobFormat =
4function extglobFormat (pattern) {
5 try {
6 extglob(pattern)
7 } catch (error) {
8 return false
9 }
10 return true
11}