git ssb

0+

cel-desktop / ssb-pkg



Tree: 1eb144e388da5f1a3466703f56ac4ab591d700fc

Files: 1eb144e388da5f1a3466703f56ac4ab591d700fc / 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