Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

eshost

Package Overview
Dependencies
Maintainers
2
Versions
71
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eshost - npm Package Compare versions

Comparing version 8.0.0 to 8.1.0

2

package.json
{
"name": "eshost",
"version": "8.0.0",
"version": "8.1.0",
"description": "Invoke ECMAScript scripts in any command line JS engine.",

@@ -5,0 +5,0 @@ "main": "lib/eshost.js",

@@ -6,3 +6,10 @@ /* JavaScriptCore exposes a $ & $262 object to its runtime */

var $262 = Object.assign({}, jsc);
var $262 = {};
// Copy "own" properties from the JSC-defined object to the normalized `$262`
// object. Neither `Object.assign` nor the object "spread" syntax can be used
// for this task because not all properties on the source object are
// enumerable.
Object.getOwnPropertyNames(jsc).forEach(function(name) {
$262[name] = jsc[name];
});
$262.global = globalThis;

@@ -9,0 +16,0 @@ $262.source = $SOURCE;

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