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

@agoric/evaluate

Package Overview
Dependencies
Maintainers
4
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@agoric/evaluate - npm Package Compare versions

Comparing version 1.0.0 to 1.1.0

7

package.json
{
"name": "@agoric/evaluate",
"version": "1.0.0",
"version": "1.1.0",
"description": "(unsafe) three-argument evaluator function",

@@ -24,3 +24,2 @@ "main": "src/main.js",

"eslint-plugin-react": "^7.14.2",
"esm": "^3.2.5",
"prettier": "^1.16.4",

@@ -30,3 +29,5 @@ "tape": "^4.10.0",

},
"dependencies": {},
"dependencies": {
"esm": "^3.2.5"
},
"author": "Agoric",

@@ -33,0 +34,0 @@ "license": "Apache-2.0",

@@ -10,3 +10,3 @@ # Evaluate

This repository contains a stub implementation of evaluate. If you really
This repository contains an INSECURE implementation of evaluate. If you really
need it, you will know, and you are on your own.

@@ -50,2 +50,4 @@ // The evaluate maker, which curries the makerOptions.

// Export the default evaluators.
export const { evaluateExpr, evaluateProgram } = makeEvaluators();
const { evaluateExpr, evaluateProgram } = makeEvaluators();
export { evaluateExpr, evaluateProgram };
export default evaluateExpr;

@@ -1,1 +0,3 @@

module.exports = require('./index.js');
const esmExports = require('esm')(module)('./index.js');
module.exports = Object.assign(esmExports.default, esmExports);
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