This commit is contained in:
Simon Priet
2021-09-05 22:53:58 +02:00
commit 9e2991e668
17888 changed files with 1263126 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
t.equal(eval('process'), 'sandbox process');
t.equal(eval('typeof global'), 'undefined');
t.equal(eval('self.xyz'), 555);
t.equal(eval('Buffer'), 'sandbox Buffer');
t.equal(eval('__filename'), 'sandbox __filename');
t.equal(eval('__dirname'), 'sandbox __dirname');
t.equal(eval('custom'), 'inserted custom');