check input string if it's a glob pattern.
Returns true/false.
```rs use isglob::isglob;
asserteq!(isglob("*.js"), true); // true asserteq!(isglob("~/abc"), false); // true ```