model-types
Advanced tools
Comparing version 1.8.0 to 1.9.0
@@ -691,5 +691,9 @@ 'use strict'; | ||
value: function get$$1(field) { | ||
return String(field).split('.').reduce(function (o, i) { | ||
return o[i]; | ||
}, this._state); | ||
try { | ||
return String(field).split('.').reduce(function (o, i) { | ||
return o[i]; | ||
}, this._state); | ||
} catch (ex) { | ||
return undefined; | ||
} | ||
} | ||
@@ -696,0 +700,0 @@ }, { |
{ | ||
"name": "model-types", | ||
"version": "1.8.0", | ||
"version": "1.9.0", | ||
"description": "Javascript library for typed object modeling.", | ||
@@ -5,0 +5,0 @@ "main": "dist", |
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
27876
629