| 6 | const utils = require('picomatch/lib/utils'); |
| 7 | |
| 8 | const isEmptyString = v => v === '' || v === './'; |
| 9 | const hasBraces = v => { |
| 10 | const index = v.indexOf('{'); |
| 11 | return index > -1 && v.indexOf('}', index) > -1; |
no outgoing calls
no test coverage detected
searching dependent graphs…