Skip to content

Instantly share code, notes, and snippets.

@vsavkin
Created May 24, 2013 15:59
Show Gist options
  • Save vsavkin/5644510 to your computer and use it in GitHub Desktop.
Save vsavkin/5644510 to your computer and use it in GitHub Desktop.
var inputs =
query("#query").
onKeyUp.
map((event) => event.target.value).
where((text) => text.length > 2).
transform(new Throttle(500)).
distinct();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment