Files
wasmer/lib/js-api/src/utils.rs
2021-06-21 21:14:16 -07:00

5 lines
139 B
Rust

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