wasmer 1.0.2

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