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

clazzy

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clazzy - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

5

package.json
{
"name" : "clazzy",
"version" : "0.2.0",
"version" : "0.2.1",

@@ -11,4 +11,3 @@ "description" : "A cross platform JavaScript library that provides a classical interface to prototypal inheritance.",

"name" : "Luke Phillips",
"email" : "lsphillips.mail@gmail.com",
"url" : "http://lsphillips.com"
"email" : "lsphillips.mail@gmail.com"
},

@@ -15,0 +14,0 @@

2

README.md

@@ -68,3 +68,3 @@ # Clazzy

this.corge = 'corge';
this.corge = 'corge';
},

@@ -71,0 +71,0 @@

@@ -134,3 +134,3 @@ 'use strict';

var wrap = (function ()
var wrapMethodToHaveSuper = (function ()
{

@@ -231,3 +231,2 @@ function noSuper ()

copyProperties(include, Class.prototype, true);

@@ -249,3 +248,3 @@ }

initialize = wrap(member, CONSTRUCTOR, base);
initialize = wrapMethodToHaveSuper(member, CONSTRUCTOR, base);

@@ -257,4 +256,3 @@ break;

// We have already dealt with these
// properties.
// We have already dealt with these properties.

@@ -281,3 +279,3 @@ break;

// injected into the prototye.
Class.prototype[property] = wrap(member, property, base);
Class.prototype[property] = wrapMethodToHaveSuper(member, property, base);
}

@@ -284,0 +282,0 @@ else

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