Comparing version 1.0.0 to 1.0.1
@@ -30,3 +30,3 @@ module.exports = str => { | ||
if(['\b', '\f', '\n', '\r', '\t', ' '].includes(v)){ | ||
if(buffer.length){ | ||
if(buffer.length > 0){ | ||
res.push(buffer); | ||
@@ -54,3 +54,3 @@ } | ||
if(buffer.length) res.push(buffer); | ||
if(buffer.length > 0) res.push(buffer); | ||
if(dQuoted) throw new SyntaxError('unexpected end of string while looking for matching double quote'); | ||
@@ -57,0 +57,0 @@ if(sQuoted) throw new SyntaxError('unexpected end of string while looking for matching single quote'); |
{ | ||
"name": "arrgv", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Parsing string to array of args like node on bash do.", | ||
@@ -19,4 +19,4 @@ "main": "index.js", | ||
"ava": "^0.25.0", | ||
"eslint": "^4.19.1", | ||
"eslint-config-astur": "0.0.2", | ||
"eslint": "^5.4.0", | ||
"eslint-config-astur": "^1.6.1", | ||
"nyc": "^12.0.2" | ||
@@ -23,0 +23,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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
8510
0