forked from nutes-uepb/query-strings-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
30 lines (23 loc) · 869 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
'use strict'
const read = require('./lib/read')
exports = module.exports = function (params) {
return read.parser(params)
}
exports = module.exports.parser = function (query, _default, _options) {
return read.parseAll(query, _default, _options)
}
exports = module.exports.parseFields = function (_query, _default) {
return read.parseFields(_query, _default)
}
exports = module.exports.parseSort = function (_query, _default) {
return read.parseSort(_query, _default)
}
exports = module.exports.parsePagination = function (_query, _default, _use_page) {
return read.parsePagination(_query, _default, _use_page)
}
exports = module.exports.parseFilter = function (_query, _default) {
return read.parseFilter(_query, _default)
}
exports = module.exports.parseDate = function (_query, _default) {
return read.parseDate(_query, _default)
}