summaryrefslogtreecommitdiff
path: root/bucky/search/parse_term.js
blob: 9cac238adcc686abe7046dcb3ece90b3eaa57069 (plain)
1
2
3
module.exports = function parse_term(term) {
  return term ? String(term).toLowerCase().replace(/s?$/, "") : "";
};