mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-09 14:18:20 +00:00
5 lines
139 B
Rust
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")
|
|
}
|