@dra2020/baseclient 1.0.140 → 1.0.142

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.
@@ -113,7 +113,7 @@ export interface DetailResult
113
113
  v: string, // value
114
114
  }
115
115
 
116
- const reInvalidChars = /[\.\[\]\\]/;
116
+ const reInvalidChars = /[\[\]\\]/;
117
117
  const reExpr = /^=(.*)$/
118
118
 
119
119
  export class FormatDetail
@@ -276,10 +276,10 @@ class Parser
276
276
  this.clauses = clauses;
277
277
  this.combineParenthetical();
278
278
  this.convertOpToText();
279
- this.combineUnary();
280
- this.convertOpToText();
281
279
  this.combineBinary(TokType.Colon);
282
280
  this.convertOpToText();
281
+ this.combineUnary();
282
+ this.convertOpToText();
283
283
  this.combineBinary(TokType.And);
284
284
  this.convertOpToText();
285
285
  this.combineBinary(TokType.Or);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dra2020/baseclient",
3
- "version": "1.0.140",
3
+ "version": "1.0.142",
4
4
  "description": "Utility functions for Javascript projects.",
5
5
  "main": "dist/baseclient.js",
6
6
  "types": "./dist/all/all.d.ts",