Files: a3b9c88c4884b2b2f42a88e75023168e5f85a08a / utils.js
168 bytesRaw
1 | var Utils = {} |
2 | |
3 | Utils.isWASMCode = function (code) { |
4 | return code.slice(0, 4).toString() === new Uint8Array([0, 0x61, 0x73, 0x6d]).toString() |
5 | } |
6 | |
7 | module.exports = Utils |
Built with git-ssb-web