@expo/xcpretty
Advanced tools
Comparing version 4.1.0 to 4.1.1
@@ -583,3 +583,4 @@ "use strict"; | ||
try { | ||
return parseInt(text, 10); | ||
const result = parseInt(text, 10); | ||
return isNaN(result) ? undefined : result; | ||
} | ||
@@ -586,0 +587,0 @@ catch { |
{ | ||
"name": "@expo/xcpretty", | ||
"description": "Parse and format xcodebuild logs", | ||
"version": "4.1.0", | ||
"version": "4.1.1", | ||
"main": "build/index.js", | ||
@@ -6,0 +6,0 @@ "types": "build/index.d.ts", |
Sorry, the diff of this file is not supported yet
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
269246
3054