simple-sql-parser
Advanced tools
Comparing version 1.1.1 to 1.1.2
{ | ||
"name": "simple-sql-parser", | ||
"description": "Javascript library to parse CRUD (Create Retrieve Update Delete) SQL queries.", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"main": "simpleSqlParser.js", | ||
@@ -6,0 +6,0 @@ "keywords": [ |
@@ -222,3 +222,3 @@ (function(exports) { | ||
limit = limit.exec(str); | ||
if (typeof limit[2] == 'undefined') limit[2] = 1; | ||
if (typeof limit[2] == 'undefined') limit[2] = 0; | ||
var result = {}; | ||
@@ -225,0 +225,0 @@ result['nb'] = parseInt(trim(limit[3]), 10); |
24592