Skip to content

Instantly share code, notes, and snippets.

@evancauwenberg
Created May 28, 2017 07:35
Show Gist options
  • Save evancauwenberg/defb4a1d4eefaaa1aba643c060dffaec to your computer and use it in GitHub Desktop.
Save evancauwenberg/defb4a1d4eefaaa1aba643c060dffaec to your computer and use it in GitHub Desktop.
_read() {
// // List all xml tags that have more than one child.
this.xmlStream.collect('title');
// // catch error
// this.xmlStream.on('error', console.log);
this.xmlStream.on(`updateElement: ${this.elementToExtract}`, (updateElement) => {
this.push(updateElement);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment