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

js.private

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

js.private - npm Package Compare versions

Comparing version 0.0.6 to 0.0.7

4

dst/Private.js

@@ -37,3 +37,5 @@ "use strict";

if (clone.hasOwnProperty(attr) && clone[attr] instanceof Function) clone[attr] = this.bind(clone[attr], context);
}return context[this.key] = clone;
}return context.__defineGetter__(this.key, function () {
return clone;
});
}

@@ -40,0 +42,0 @@ }, {

{
"name": "js.private",
"version": "0.0.6",
"version": "0.0.7",
"description": "Private properties for objects",

@@ -5,0 +5,0 @@ "main": "./dst/Private.js",

@@ -21,3 +21,3 @@ import Clone from "js.clone";

clone[ attr ] = this.bind( clone[ attr ], context );
return context[ this.key ] = clone;
return context.__defineGetter__( this.key, function(){ return clone; } );
}

@@ -24,0 +24,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