Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

cargo fmt

+4 -1
+4 -1
compiler-core/src/io.rs
··· 430 430 431 431 #[inline] 432 432 pub fn is_native_file_extension(extension: &str) -> bool { 433 - matches!(extension, "erl" | "hrl" | "ex" | "js" | "mjs" | "cjs" | "ts") 433 + matches!( 434 + extension, 435 + "erl" | "hrl" | "ex" | "js" | "mjs" | "cjs" | "ts" 436 + ) 434 437 } 435 438 436 439 pub fn ordered_map<S, K, V>(value: &HashMap<K, V>, serializer: S) -> Result<S::Ok, S::Error>