We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently fromEvent() accepts a single DOM node, but with minor changes it will accept a NodeList to avoid creating multiple Streams.
Create as few Streams as possible to save memory and hopefully gain performance.
The text was updated successfully, but these errors were encountered:
feat(): assume NodeList
503652d
fromEvent() now assumes it is passed a NodeList and creates a single stream from all of the elements of a NodeList. Closes #17
feat(): use new fromEvent() semantics
99be9d2
Updates the use of fromEvent to match the new semantics Closes #17
Merge branch 'feat/issue-#17' into develop
5cfa0a0
TylorS
No branches or pull requests
Overview
Currently fromEvent() accepts a single DOM node, but with minor changes it will accept a NodeList to avoid creating multiple Streams.
Motivation
Create as few Streams as possible to save memory and hopefully gain performance.
The text was updated successfully, but these errors were encountered: