Files: e9d9dec1d00ff365112ca0f981bbda15e3682528 / test / test-50-class-to-string / test-x-index.js
202 bytesRaw
1 | ; |
2 | |
3 | const Class = class {}; |
4 | // test if Class.toString() segfaults |
5 | // or returns incorrect value (#62) |
6 | const cts = Class.toString(); |
7 | if (cts.indexOf('class {}') >= 0) { |
8 | console.log('ok'); |
9 | } |
10 |
Built with git-ssb-web