Comparing version 0.2.0 to 0.2.1
{ | ||
"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 @@ |
@@ -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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
0
11052
5
230