文本查询
用于将查询字符串转换为其他文本字段的比较器的简单查询标记器。
用法
var Query = require ( "text-query" ) ;
// Create a query: spaces are OR'd groups and commas AND groups, with
// double quoted strings being one search entity.
var q = new Query ( "'death metal', swedish finnish, guitar bass drums" ) ;
// This query only returns true of "death metal" is in the text,
// along with "swedish" OR "finnish", and an instrument ("g
1