wasmer_types/
utils.rs

1/// Check if the provided bytes are wasm-like
2pub fn is_wasm(bytes: impl AsRef<[u8]>) -> bool {
3    bytes.as_ref().starts_with(b"\0asm")
4}