wasmer-types 3.2.0-alpha.1

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