securityos/node_modules/lunr/lib/query_parse_error.js

9 lines
197 B
JavaScript
Raw Normal View History

2024-09-06 15:32:35 +00:00
lunr.QueryParseError = function (message, start, end) {
this.name = "QueryParseError"
this.message = message
this.start = start
this.end = end
}
lunr.QueryParseError.prototype = new Error