quanstructor
Advanced tools
Comparing version 0.4.6 to 0.4.7
{ | ||
"name": "quanstructor", | ||
"version": "0.4.6", | ||
"version": "0.4.7", | ||
"description": "Exceptionally powerful object model builder for complex architectures", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -34,3 +34,3 @@ let { defined } = require('./lib/Statics') | ||
this._viewProxies = false | ||
this._viewProxy = false | ||
@@ -43,3 +43,3 @@ this._tune() | ||
viewProxies ( view ) { | ||
this._viewProxies = !!view | ||
this._viewProxy = !!view | ||
return this | ||
@@ -249,3 +249,3 @@ }, | ||
for (let attrib of this.views[ space ] ) { | ||
if ( !this._viewProxies && this.specs[ attrib ].Proxy ) continue | ||
if ( !this._viewProxy && this.specs[ attrib ].Proxy && !this.specs[ attrib ]._viewProxy ) continue | ||
@@ -252,0 +252,0 @@ let value = this.specs[attrib].convert ? await this.specs[attrib].convert( obj[ attrib ] ) : obj[ attrib ] |
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
19644