We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
var gitignore = parser.compile('/ajax/libs/bPopup/*b*'); console.log(gitignore.accepts('/ajax/libs/bPopup/0.9.0')); //output false var gitignore = parser.compile('/ajax/libs/jquery-form-validator/2.2'); console.log(gitignore.accepts('/ajax/libs/jquery-form-validator/2.2.43')); //output false var gitignore = parser.compile('/ajax/libs/punycode/2.0'); console.log(gitignore.accepts('/ajax/libs/punycode/2.0.0')); //output false var gitignore = parser.compile('/ajax/libs/typescript/*dev*'); console.log(gitignore.accepts('/ajax/libs/typescript/2.0.6-insiders.20161014')); //output false
The text was updated successfully, but these errors were encountered:
added tests for issue codemix#12
fdca1c7
fix test code for codemix#12 and codemix#14 so the tests at least run.
2fc575d
No branches or pull requests
The text was updated successfully, but these errors were encountered: