When an optional attribute is omitted from an xml document, attempting to retrieve the attribute value should return undefined or null, but instead returns an untyped object with _exist: false. This means that null checks against these optional attributes pass, even when they are not specified.
For example, at https://github.com/charto/cxml/blob/master/test/dir-example.ts#L50 , if you were to add: let inode = doc.dir.inode || '' the value of inode would be an object with _exists: false, not a string representing the inode of the directory.
Have I missed some handy feature for detecting unspecified optional attributes?
When an optional attribute is omitted from an xml document, attempting to retrieve the attribute value should return undefined or null, but instead returns an untyped object with _exist: false. This means that null checks against these optional attributes pass, even when they are not specified.
For example, at https://github.com/charto/cxml/blob/master/test/dir-example.ts#L50 , if you were to add:
let inode = doc.dir.inode || ''the value ofinodewould be an object with _exists: false, not a string representing the inode of the directory.Have I missed some handy feature for detecting unspecified optional attributes?