Comparing version 0.6.0 to 0.6.1
@@ -54,9 +54,9 @@ "use strict"; | ||
__props__: { | ||
value: Object.assign(new.target.__props__.call(this), props) | ||
value: Object.assign(this.constructor.__props__.call(this), props) | ||
}, | ||
__state__: { | ||
value: Object.assign(new.target.__state__.call(this), state) | ||
value: Object.assign(this.constructor.__state__.call(this), state) | ||
}, | ||
__computed__: { | ||
value: Object.assign(new.target.__computed__.call(this), computed) | ||
value: Object.assign(this.constructor.__computed__.call(this), computed) | ||
} | ||
@@ -63,0 +63,0 @@ }); |
{ | ||
"name": "lr-core", | ||
"version": "0.6.0", | ||
"version": "0.6.1", | ||
"description": "Line Rider core library", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -46,9 +46,9 @@ /** | ||
__props__: { | ||
value: Object.assign(new.target.__props__.call(this), props) | ||
value: Object.assign(this.constructor.__props__.call(this), props) | ||
}, | ||
__state__: { | ||
value: Object.assign(new.target.__state__.call(this), state) | ||
value: Object.assign(this.constructor.__state__.call(this), state) | ||
}, | ||
__computed__: { | ||
value: Object.assign(new.target.__computed__.call(this), computed) | ||
value: Object.assign(this.constructor.__computed__.call(this), computed) | ||
} | ||
@@ -55,0 +55,0 @@ }) |
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
159369