(condition, text)
| 1671 | var ABORT = false; |
| 1672 | var EXITSTATUS; |
| 1673 | function assert(condition, text) { |
| 1674 | if (!condition) { |
| 1675 | abort('Assertion failed' + (text ? ': ' + text : '')); |
| 1676 | } |
| 1677 | } |
| 1678 | var isFileURI = (filename) => filename.startsWith('file://'); |
| 1679 | function writeStackCookie() { |
| 1680 | var max = _emscripten_stack_get_end(); |
no test coverage detected