Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chrisdothtml/deno-minimatch
A deno port of minimatch
https://github.com/chrisdothtml/deno-minimatch
deno minimatch
Last synced: 4 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 (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-16T23:56:58.000Z (over 4 years ago)
- Last Synced: 2024-09-16T14:40:00.274Z (5 months ago)
- Topics: deno, minimatch
- Language: JavaScript
- Homepage:
- Size: 126 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# deno-minimatch
[![chrisdothtml code style](https://img.shields.io/badge/code_style-chrisdothtml-brightgreen.svg)](https://github.com/chrisdothtml/eslint-config)
[![travis-ci build status](https://api.travis-ci.com/chrisdothtml/deno-minimatch.svg?branch=master)](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).