* Helper function checking if specified object is a memory descriptor. * * @param descriptor Object to check
(descriptor: any)
| 24 | * @param descriptor Object to check |
| 25 | */ |
| 26 | function isMemoryDescriptor(descriptor: any): descriptor is MemoryDescriptor { |
| 27 | return 'initial' in descriptor; |
| 28 | } |
| 29 | |
| 30 | /** |
| 31 | * @spec https://webassembly.github.io/spec/js-api/index.html#memories |