git ssb

0+

cel-desktop / ssb-pkg



Tree: 67c0e15a98a66eb99db2251478505d6f3d37535c

Files: 67c0e15a98a66eb99db2251478505d6f3d37535c / test / test-50-class-to-string / test-x-index.js

202 bytesRaw
1'use strict';
2
3const Class = class {};
4// test if Class.toString() segfaults
5// or returns incorrect value (#62)
6const cts = Class.toString();
7if (cts.indexOf('class {}') >= 0) {
8 console.log('ok');
9}
10

Built with git-ssb-web