You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TypeError: Cannot read property 'propertyIsEnumerable' of undefined
at DataObjectParser.get (dataobject-parser.js:115)
Our data model uses undefined (vs. null) intentionally. null denotes an intentional absence of value, while undefined has not yet been determined or not yet available.
line 114 of the dataobject-parser.js script appears to check for null, but does not handle undefined, yielding the above error in case of the undefined value. Any reason it could not check for and correctly handle both null and undefined? In the case of undefined, I'd expect to receive undefined as the return value from the .get() call.
The text was updated successfully, but these errors were encountered:
TypeError: Cannot read property 'propertyIsEnumerable' of undefined
at DataObjectParser.get (dataobject-parser.js:115)
Our data model uses undefined (vs. null) intentionally. null denotes an intentional absence of value, while undefined has not yet been determined or not yet available.
line 114 of the dataobject-parser.js script appears to check for null, but does not handle undefined, yielding the above error in case of the undefined value. Any reason it could not check for and correctly handle both null and undefined? In the case of undefined, I'd expect to receive undefined as the return value from the .get() call.
The text was updated successfully, but these errors were encountered: