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

internal

Package Overview
Dependencies
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

internal - npm Package Compare versions

Comparing version 2.0.12 to 2.0.13

2

package.json
{
"name": "internal",
"version": "2.0.12",
"version": "2.0.13",
"files": [

@@ -5,0 +5,0 @@ "**/index.mjs",

@@ -8,3 +8,3 @@ export default proxy;

declare namespace proxy {
var toValue: <State>(proxy: Proxy<State>) => State;
var toValue: <Value>(proxied: Value) => Value;
}

@@ -50,4 +50,4 @@ 'use strict';

// TODO: in the future, we may want to be more clever
proxy.toValue = function(proxy) {
return JSON.parse(JSON.stringify(proxy))
proxy.toValue = function(proxied) {
return JSON.parse(JSON.stringify(proxied))
};

@@ -54,0 +54,0 @@

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