Skip to content

Instantly share code, notes, and snippets.

@alexeyraspopov
Created May 11, 2014 17:40
Show Gist options
  • Save alexeyraspopov/c26a9e3342b3a1c2fa95 to your computer and use it in GitHub Desktop.
Save alexeyraspopov/c26a9e3342b3a1c2fa95 to your computer and use it in GitHub Desktop.
function filter(fn){
var child = stream();
child.changed = function(old, value){
return fn(value);
};
return child;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment