is-glob

Crates.iois-glob
lib.rsis-glob
version0.1.0
sourcesrc
created_at2022-11-28 01:49:35.723336
updated_at2022-11-28 01:49:35.723336
descriptionReturns `true` if the given string looks like a glob pattern.
homepage
repository
max_upload_size
id724038
size7,076
Alex (alexzhang1030)

documentation

README

is-glob

check input string if it's a glob pattern.

Returns true/false.

use is_glob::is_glob;

assert_eq!(is_glob("*.js"), true); // true
assert_eq!(is_glob("~/abc"), false); // true
Commit count: 0

cargo fmt