cson-parser
Advanced tools
Comparing version 4.0.3 to 4.0.4
@@ -0,1 +1,7 @@ | ||
### 4.0.4 | ||
* fix: address ltgm.com & remove superfluous arguments - **[@aaarichter](https://github.com/aaarichter)** [#83](https://github.com/groupon/cson-parser/pull/83) | ||
- [`feb4690`](https://github.com/groupon/cson-parser/commit/feb4690ce9cde04392d51441b8c606689106d66e) **fix:** address ltgm.com & remove superfluous arguments | ||
### 4.0.3 | ||
@@ -2,0 +8,0 @@ |
@@ -181,3 +181,3 @@ /* | ||
case 'string': | ||
return visitString(visitNode, indent, node, options); | ||
return visitString(visitNode, indent, node); | ||
@@ -188,3 +188,3 @@ case 'object': | ||
} else if (Array.isArray(node)) { | ||
return visitArray(visitNode, indent, node, options); | ||
return visitArray(visitNode, indent, node); | ||
} | ||
@@ -191,0 +191,0 @@ return visitObject(visitNode, indent, node, options); |
{ | ||
"name": "cson-parser", | ||
"version": "4.0.3", | ||
"version": "4.0.4", | ||
"description": "Safe parsing of CSON files", | ||
@@ -5,0 +5,0 @@ "license": "BSD-3-Clause", |
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
28213