BLUE
PHP 7.4.33
Path:
/var/www/coop-podio-sms.bitkit.dk/httpdocs/node_modules/vm-browserify/test
Run
Logout
Edit File
Size: 825 B
Close
/var/www/coop-podio-sms.bitkit.dk/httpdocs/node_modules/vm-browserify/test/vm.js
Text
Base64
var test = require('tape'); var vm = require('../'); test('vmRunInNewContext', function (t) { t.plan(6); t.equal(vm.runInNewContext('a + 5', { a : 100 }), 105); (function () { var vars = { x : 10 }; t.equal(vm.runInNewContext('x++', vars), 10); t.equal(vars.x, 11); })(); (function () { var vars = { x : 10 }; t.equal(vm.runInNewContext('var y = 3; y + x++', vars), 13); t.equal(vars.x, 11); t.equal(vars.y, 3); })(); t.end(); }); test('vmRunInContext', function (t) { t.plan(2); var context = vm.createContext({ foo: 1 }); vm.runInContext('var x = 1', context); t.deepEqual(context, { foo: 1, x: 1 }); vm.runInContext('var y = 1', context); t.deepEqual(context, { foo: 1, x: 1, y: 1 }); });
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 1
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
vm.js
825 B
lrw-r--r--
1985-10-26 08:15:00
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).