mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 22:25:40 +00:00
5 lines
150 B
Rust
5 lines
150 B
Rust
|
/// Detect if a provided binary is a WASM file
|
||
|
pub fn is_wasm_binary(binary: &Vec<u8>) -> bool {
|
||
|
binary.starts_with(&[b'\0', b'a', b's', b'm'])
|
||
|
}
|