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
This section of code (starting line 82 in togeojson.js) causes an XMLserialization error when trying to use it with Electron as the XMLSerializer shows as being defined when it needs to actually use xmldom.
var serializer;
if (typeof XMLSerializer !== 'undefined') {
/* istanbul ignore next */
serializer = new XMLSerializer();
// only require xmldom in a node environment
} else if (typeof exports === 'object' && typeof process === 'object' && !process.browser) {
serializer = new (require('xmldom').XMLSerializer)();
}
Uncaught TypeError: Failed to execute 'serializeToString' on 'XMLSerializer': parameter 1 is not of type 'Node'.
The text was updated successfully, but these errors were encountered:
This section of code (starting line 82 in togeojson.js) causes an XMLserialization error when trying to use it with Electron as the XMLSerializer shows as being defined when it needs to actually use xmldom.
The text was updated successfully, but these errors were encountered: