New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@forge/isolated-vm

Package Overview
Dependencies
Maintainers
8
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@forge/isolated-vm - npm Package Compare versions

Comparing version 3.3.9 to 3.3.10-next.0

6

CHANGELOG.md
# @forge/isolated-vm
## 3.3.10-next.0
### Patch Changes
- 898efdc: Adjusts behaviour of isolate reference API methods
## 3.3.9

@@ -4,0 +10,0 @@

2

package.json
{
"name": "@forge/isolated-vm",
"version": "3.3.9",
"version": "3.3.10-next.0",
"description": "Access to multiple isolates",

@@ -5,0 +5,0 @@ "main": "isolated-vm.js",

@@ -31,24 +31,4 @@ 'use strict';

// Repeat but with applySync()
try {
let env = makeIsolate();
let script = await env.isolate.compileScript('new '+ function() {
// Now we're inside the isolate
global.sabotage = function() {
let stash = [];
for (;;) {
stash.push({});
}
}
let ref = context.global.getSync('sabotage');
ref.applySync(undefined, []);
});
await script.run(env.context);
console.log('fail2');
} catch (err) {
if (!/disposed/.test(err)) throw err;
}
console.log('pass');
}()).catch(console.error);

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc