mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 05:38:03 +00:00
8 lines
229 B
TypeScript
8 lines
229 B
TypeScript
/**
|
|
* @name isWasm
|
|
* @summary Tests if the input has a WASM header
|
|
* @description
|
|
* Checks to see if the input Uint8Array contains a valid WASM header
|
|
*/
|
|
export declare function isWasm(value?: unknown): value is Uint8Array;
|