@xliic/preserving-json-yaml-parser
Advanced tools
Comparing version 1.7.1 to 1.7.2
@@ -9,2 +9,6 @@ "use strict"; | ||
function visitJson(parent, key, node, visitor) { | ||
if (node === undefined) { | ||
visitor.onValue(parent, key, null, undefined, { value: { start: 0, end: 0 } }); | ||
return; | ||
} | ||
const location = { value: { start: node.offset, end: node.offset + node.length } }; | ||
@@ -11,0 +15,0 @@ if (parent.type === "property") { |
{ | ||
"name": "@xliic/preserving-json-yaml-parser", | ||
"version": "1.7.1", | ||
"version": "1.7.2", | ||
"description": "YAML/JSON parser and serializer that preserves formatting of the original numerical values (i.e. 1.0 vs 1) and handles integers bigger than MAX_SAFE_INTEGER", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
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
86154
1310