Skip to content

Commit

Permalink
feat: add exports (#291)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopheBraud committed May 7, 2024
1 parent 6ad3510 commit e6b23a2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions services/docs/lib/modules/queryBuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ function stringOperators(filters, key, value) {
}
/* eslint-enable no-prototype-builtins */
}
module.exports.stringOperators = stringOperators;

/**
* LHS brackets operator on number
Expand Down Expand Up @@ -110,6 +111,7 @@ function numberOperators(filters, key, value) {
}
/* eslint-enable no-prototype-builtins */
}
module.exports.numberOperators = numberOperators;

/**
* LHS brackets operator on date
Expand All @@ -134,6 +136,7 @@ function dateOperators(filters, key, value) {
}
/* eslint-enable no-prototype-builtins */
}
module.exports.dateOperators = dateOperators;

/**
* LHS brackets operator on boolean
Expand All @@ -150,6 +153,7 @@ function boolOperators(filters, key, value) {
}
/* eslint-enable no-prototype-builtins */
}
module.exports.boolOperators = boolOperators;

/**
* Miscellaneous LHS brackets operators
Expand All @@ -167,6 +171,7 @@ function specialOperators(filters, key, value) {
}
/* eslint-enable no-prototype-builtins */
}
module.exports.specialOperators = specialOperators;

/**
* This function transforms the query string into a MongoDb `$match` filter.
Expand Down

0 comments on commit e6b23a2

Please sign in to comment.