diff options
Diffstat (limited to 'cli/tsc/mod.rs')
-rw-r--r-- | cli/tsc/mod.rs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/cli/tsc/mod.rs b/cli/tsc/mod.rs index a4d6640f7..52883a0b3 100644 --- a/cli/tsc/mod.rs +++ b/cli/tsc/mod.rs @@ -242,10 +242,11 @@ fn get_maybe_hash( } fn get_hash(source: &str, hash_data: u64) -> String { - let mut hasher = FastInsecureHasher::new(); - hasher.write_str(source); - hasher.write_u64(hash_data); - hasher.finish().to_string() + FastInsecureHasher::new() + .write_str(source) + .write_u64(hash_data) + .finish() + .to_string() } /// Hash the URL so it can be sent to `tsc` in a supportable way |