extglob-ending-with-state-char.js 200 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 var test = require('tap').test var minimatch = require('../') test('extglob ending with statechar', function(t) { t.notOk(minimatch('ax', 'a?(b*)')) t.ok(minimatch('ax', '?(a*|b)')) t.end() })