Skip to content

Commit

Permalink
v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nayeemrmn committed Aug 4, 2020
1 parent a119c29 commit b650283
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -5,7 +5,7 @@ Convert glob strings to regular expressions.
## Usage

```ts
import { globToRegExp } from "https://raw.githubusercontent.com/nayeemrmn/glob-to-regexp/v0.2.0/mod.ts";
import { globToRegExp } from "https://raw.githubusercontent.com/nayeemrmn/glob-to-regexp/v0.2.1/mod.ts";

const pattern1 = globToRegExp("**/?(foo|bar)");
console.log("foo".match(pattern1) != null); // true
Expand Down
2 changes: 1 addition & 1 deletion version.ts
@@ -1,3 +1,3 @@
// Copyright 2020 Nayeem Rahman. All rights reserved. MIT license.

export const VERSION = "v0.2.0";
export const VERSION = "v0.2.1";

0 comments on commit b650283

Please sign in to comment.