├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── package.json ├── src ├── filter.js ├── filters │ ├── between.js │ ├── contains.js │ ├── equals.js │ ├── greaterthan.js │ ├── greaterthanequals.js │ ├── ilike.js │ ├── in.js │ ├── lessthan.js │ ├── lessthanequals.js │ ├── like.js │ ├── negate.js │ ├── not.js │ ├── notbetween.js │ ├── notilike.js │ ├── notin.js │ └── notlike.js ├── index.js ├── order.js ├── paginate.js └── utils.js └── tests ├── order_test.js ├── pagination_test.js └── parser_test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/package.json -------------------------------------------------------------------------------- /src/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/src/filter.js -------------------------------------------------------------------------------- /src/filters/between.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/src/filters/between.js -------------------------------------------------------------------------------- /src/filters/contains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/src/filters/contains.js -------------------------------------------------------------------------------- /src/filters/equals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/src/filters/equals.js -------------------------------------------------------------------------------- /src/filters/greaterthan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/src/filters/greaterthan.js -------------------------------------------------------------------------------- /src/filters/greaterthanequals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/src/filters/greaterthanequals.js -------------------------------------------------------------------------------- /src/filters/ilike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/src/filters/ilike.js -------------------------------------------------------------------------------- /src/filters/in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/src/filters/in.js -------------------------------------------------------------------------------- /src/filters/lessthan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/src/filters/lessthan.js -------------------------------------------------------------------------------- /src/filters/lessthanequals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/src/filters/lessthanequals.js -------------------------------------------------------------------------------- /src/filters/like.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/src/filters/like.js -------------------------------------------------------------------------------- /src/filters/negate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/src/filters/negate.js -------------------------------------------------------------------------------- /src/filters/not.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/src/filters/not.js -------------------------------------------------------------------------------- /src/filters/notbetween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/src/filters/notbetween.js -------------------------------------------------------------------------------- /src/filters/notilike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/src/filters/notilike.js -------------------------------------------------------------------------------- /src/filters/notin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/src/filters/notin.js -------------------------------------------------------------------------------- /src/filters/notlike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/src/filters/notlike.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/src/index.js -------------------------------------------------------------------------------- /src/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/src/order.js -------------------------------------------------------------------------------- /src/paginate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/src/paginate.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/src/utils.js -------------------------------------------------------------------------------- /tests/order_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/tests/order_test.js -------------------------------------------------------------------------------- /tests/pagination_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/tests/pagination_test.js -------------------------------------------------------------------------------- /tests/parser_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slaveofcode/restful-filter/HEAD/tests/parser_test.js --------------------------------------------------------------------------------