This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
| name | age | message | |
|---|---|---|---|
| |
JSONQuery.js | Fri Nov 14 13:18:16 -0800 2008 | |
| |
README | Fri Nov 14 13:19:33 -0800 2008 |
README
JSONQuery provides a comprehensive set of data querying tools including
filtering, recursive search, sorting, mapping, range selection, and flexible
expressions with wildcard string comparisons and various operators.
Quick Examples:
var data = {customers:[
{name:"Susan", purchases:29},
{name:"Kim", purchases:150},
{name:"Jake", purchases:27}
]};
var results = JSONQuery("$.customers[?purchases > 21 & name='Jake'][\\purchases]",data);
results
returns customers sorted by higest number of purchases to lowest.
For more advanced querying capabilities, see:
http://www.sitepen.com/blog/2008/09/23/effortless-offline-with-offlinerest/






