json-case-convertor
Advanced tools
Comparing version 1.2.0 to 1.3.0
@@ -83,2 +83,6 @@ //License Type: ISC | ||
} | ||
if (typeof value === 'string') | ||
{ | ||
value = caseCondition(value, keyCase); | ||
} | ||
return value | ||
@@ -118,2 +122,6 @@ }) | ||
} | ||
if (typeof value === 'string') | ||
{ | ||
value = caseCondition(value, keyCase); | ||
} | ||
return value | ||
@@ -120,0 +128,0 @@ }) |
{ | ||
"name": "json-case-convertor", | ||
"version": "1.2.0", | ||
"version": "1.3.0", | ||
"description": "JsonCaseConvertor can handle literraly any json object for case convertion. \r ## Features", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -78,3 +78,3 @@ # JsonCaseConvertor | ||
prize: 2000, | ||
other: [ 'sample1', 'sample2' ], | ||
other: [ 'sample_1', 'sample_2' ], | ||
other2: { location: 'america', longitude1: 23.4, latitude1: 23.11 } | ||
@@ -98,3 +98,3 @@ } | ||
prize: 2000, | ||
other: [ 'sample1', 'sample2' ], | ||
other: [ 'sample_1', 'sample_2' ], | ||
other_2: { location: 'america', longitude_1: 23.4, latitude_1: 23.11 } | ||
@@ -101,0 +101,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
10954
280