nested-proxies
Advanced tools
Comparing version 0.2.0 to 0.2.1
@@ -31,3 +31,3 @@ /* | ||
function DeepProxy( target , handler = {} , options = {} ) { | ||
function DeepProxy( target , handler = {} , options = {} , rData = undefined ) { | ||
this.target = target ; | ||
@@ -41,3 +41,3 @@ this.handler = handler ; | ||
return this.getProxyFor( target , undefined , undefined , options.rData ) ; | ||
return this.getProxyFor( target , undefined , undefined , rData !== undefined ? rData : options.rData ) ; | ||
} | ||
@@ -44,0 +44,0 @@ |
{ | ||
"name": "nested-proxies", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"engines": { | ||
@@ -5,0 +5,0 @@ "node": ">=14.15.0" |
@@ -364,2 +364,3 @@ /* | ||
{ data , rData } | ||
//{ data } , rData | ||
) ; | ||
@@ -366,0 +367,0 @@ |
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
27238
580