Last active
July 11, 2021 11:26
-
-
Save SynCap/391877fa398e946b1172ce9817a2fb22 to your computer and use it in GitHub Desktop.
parseXML, JavaScript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const parseXML = str => {try{ return (new window.DOMParser()).parseFromString(str, "text/xml") } catch(e) { return undefined} } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment