is-glob 0.1.0

Returns `true` if the given string looks like a glob pattern.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# is-glob

check input string if it's a glob pattern.

Returns true/false.

```rs
use is_glob::is_glob;

assert_eq!(is_glob("*.js"), true); // true
assert_eq!(is_glob("~/abc"), false); // true
```