diff options
Diffstat (limited to 'cli/file_fetcher.rs')
-rw-r--r-- | cli/file_fetcher.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/file_fetcher.rs b/cli/file_fetcher.rs index 4d3048750..8403c660d 100644 --- a/cli/file_fetcher.rs +++ b/cli/file_fetcher.rs @@ -191,7 +191,7 @@ pub fn map_content_type( } /// Remove shebangs from the start of source code strings -fn strip_shebang(mut value: String) -> String { +pub fn strip_shebang(mut value: String) -> String { if value.starts_with("#!") { if let Some(mid) = value.find('\n') { let (_, rest) = value.split_at(mid); |