diff options
Diffstat (limited to 'vendor/gix-path/src/util.rs')
-rw-r--r-- | vendor/gix-path/src/util.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/vendor/gix-path/src/util.rs b/vendor/gix-path/src/util.rs new file mode 100644 index 000000000..7920910d7 --- /dev/null +++ b/vendor/gix-path/src/util.rs @@ -0,0 +1,8 @@ +use std::path::Path; + +/// return true if `path` is absolute, which depends on the platform but is always true if it starts with a `slash`, hence looks like +/// a linux path. +pub fn is_absolute(path: impl AsRef<Path>) -> bool { + let path = path.as_ref(); + path.is_absolute() || path.to_str().and_then(|s| s.chars().next()) == Some('/') +} |