@iebh/polyglot 4.8.1 → 4.8.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/data/v4.xlsx +0 -0
- package/lib/modules/engines/generic.js +3 -0
- package/lib/modules/parse.js +16 -0
- package/package.json +1 -1
package/data/v4.xlsx
CHANGED
|
Binary file
|
|
@@ -319,9 +319,12 @@ var _default = {
|
|
|
319
319
|
buffer += 'NOT';
|
|
320
320
|
break;
|
|
321
321
|
case 'raw':
|
|
322
|
+
console.log("Here1", buffer);
|
|
322
323
|
buffer += branch.content;
|
|
323
324
|
break;
|
|
325
|
+
case 'dollarOne':
|
|
324
326
|
case 'template':
|
|
327
|
+
console.log("Here2", buffer);
|
|
325
328
|
buffer += _tools["default"].resolveTemplate(branch.content, engine);
|
|
326
329
|
break;
|
|
327
330
|
case 'comment':
|
package/lib/modules/parse.js
CHANGED
|
@@ -156,6 +156,22 @@ var parse = function parse(query, options) {
|
|
|
156
156
|
// branch.msg = "Extra closing bracket removed after term"
|
|
157
157
|
}
|
|
158
158
|
leaf = branch.nodes;
|
|
159
|
+
} else if (match = /^\$1\b/.exec(q)) {
|
|
160
|
+
// $1
|
|
161
|
+
branch.nodes.push({
|
|
162
|
+
type: 'dollarOne'
|
|
163
|
+
});
|
|
164
|
+
offset += match[0].length;
|
|
165
|
+
q = q.substr(match[0].length);
|
|
166
|
+
cropString = false;
|
|
167
|
+
} else if (match = /^\$[2-9]\b/.exec(q)) {
|
|
168
|
+
// $2 to $9
|
|
169
|
+
branch.nodes.push({
|
|
170
|
+
type: 'dollarOtherNum'
|
|
171
|
+
});
|
|
172
|
+
offset += match[0].length;
|
|
173
|
+
q = q.substr(match[0].length);
|
|
174
|
+
cropString = false;
|
|
159
175
|
} else if (match = /^([0-9]+)\s*[‐\-]\s*([0-9]+)(?:\/(AND|OR|NOT))/i.exec(q)) {
|
|
160
176
|
// 1-7/OR
|
|
161
177
|
branch.nodes.push({
|