Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 909 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 909 Bytes

deno-minimatch

chrisdothtml code style travis-ci build status

A deno port of minimatch

Use

See minimatch docs for full usage info

import minimatch from 'https://deno.land/x/minimatch/index.js'

minimatch('bar.foo', '*.foo')
//> true

Contribute

# 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.