Comparing version 1.5.20 to 1.5.21
@@ -264,3 +264,3 @@ const lexer = require('sql-parser').lexer; | ||
stack.push({ | ||
value: token[1], | ||
value: `'${token[1]}'`, | ||
type: 'string' | ||
@@ -323,3 +323,3 @@ }); | ||
stack.push({ | ||
value: token[1], | ||
value: `'${token[1]}'`, | ||
type: 'string' | ||
@@ -326,0 +326,0 @@ }); |
{ | ||
"name": "sql2json", | ||
"version": "1.5.20", | ||
"version": "1.5.21", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -889,6 +889,6 @@ const assert = require('assert'); | ||
arguments: [{ | ||
value: 'a', | ||
value: '\'a\'', | ||
type: 'string' | ||
}, { | ||
value: 'b', | ||
value: '\'b\'', | ||
type: 'string' | ||
@@ -1069,6 +1069,6 @@ }] | ||
type: 'string', | ||
value: 'nominal' | ||
value: '\'nominal\'' | ||
}, { | ||
type: 'string', | ||
value: '0' | ||
value: '\'0\'' | ||
}] | ||
@@ -1075,0 +1075,0 @@ }, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
126292