jsonc-parser
Advanced tools
Comparing version 2.0.1 to 2.0.2
@@ -11,3 +11,4 @@ /*--------------------------------------------------------------------------------------------- | ||
} | ||
export function setProperty(text, path, value, formattingOptions, getInsertionIndex) { | ||
export function setProperty(text, originalPath, value, formattingOptions, getInsertionIndex) { | ||
var path = originalPath.slice(); | ||
var errors = []; | ||
@@ -14,0 +15,0 @@ var root = parseTree(text, errors); |
@@ -22,3 +22,4 @@ (function (factory) { | ||
exports.removeProperty = removeProperty; | ||
function setProperty(text, path, value, formattingOptions, getInsertionIndex) { | ||
function setProperty(text, originalPath, value, formattingOptions, getInsertionIndex) { | ||
var path = originalPath.slice(); | ||
var errors = []; | ||
@@ -25,0 +26,0 @@ var root = parser_1.parseTree(text, errors); |
{ | ||
"name": "jsonc-parser", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"description": "Scanner and parser for JSON with comments.", | ||
@@ -5,0 +5,0 @@ "main": "./lib/umd/main.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
166995
3487