implementing <> in attribute filtering

implementing <> in attribute filtering

Hey everyone,
I today found out that you can use the attribute filter to filter for keys in generic objects, which is *way* cool. Check this out:
$([
    { foo: 1, bar: 0 },
    { foo: 0, bar: 0 }
]).not("[foo=0]")
=> returns [{ foo: 1, bar: 0 }]
This is insanely useful if working with JSON or in general big data sets, and the only piece missing right now is better comparison methods. So I'd like to see "[foo>5]" working, for instance.
What do you think?<br clear="all">
--
Paul Bakaus
UI Architect
--
<a href="http://paulbakaus.com">http://paulbakaus.com</a>
<a href="http://www.linkedin.com/in/paulbakaus">http://www.linkedin.com/in/paulbakaus</a>