Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80736 views
1
var test = require('tap').test
2
var minimatch = require('../')
3
4
test('extglob ending with statechar', function(t) {
5
t.notOk(minimatch('ax', 'a?(b*)'))
6
t.ok(minimatch('ax', '?(a*|b)'))
7
t.end()
8
})
9
10