https://github.com/chrisdothtml/deno-minimatch
A deno port of minimatch
https://github.com/chrisdothtml/deno-minimatch
deno minimatch
Last synced: 11 months ago
JSON representation
A deno port of minimatch
- Host: GitHub
- URL: https://github.com/chrisdothtml/deno-minimatch
- Owner: chrisdothtml
- Created: 2018-12-26T20:25:34.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-07-16T23:56:58.000Z (almost 6 years ago)
- Last Synced: 2025-06-14T23:45:44.822Z (about 1 year ago)
- Topics: deno, minimatch
- Language: JavaScript
- Homepage:
- Size: 126 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# deno-minimatch
[](https://github.com/chrisdothtml/eslint-config)
[](https://travis-ci.com/github/chrisdothtml/deno-minimatch)
> A [deno](https://github.com/denoland/deno) port of [minimatch](https://github.com/isaacs/minimatch)
# Use
See [minimatch docs](https://github.com/isaacs/minimatch#usage) for full usage info
```js
import minimatch from 'https://deno.land/x/minimatch/index.js'
minimatch('bar.foo', '*.foo')
//> true
```
# Contribute
```sh
# generate build file
yarn build
# test build file
yarn test
```
No need to rebuild the dist file in pull requests as this is already handled by [a Github action](https://github.com/chrisdothtml/deno-minimatch/blob/master/.github/workflows/rebuild.yml).