@turf/helpers
Advanced tools
Comparing version 6.1.3 to 6.1.4
@@ -619,3 +619,3 @@ "use strict"; | ||
function isNumber(num) { | ||
return !isNaN(num) && num !== null && !Array.isArray(num); | ||
return !isNaN(num) && num !== null && !Array.isArray(num) && !/^\s*$/.test(num); | ||
} | ||
@@ -622,0 +622,0 @@ exports.isNumber = isNumber; |
{ | ||
"name": "@turf/helpers", | ||
"version": "6.1.3", | ||
"version": "6.1.4", | ||
"description": "turf helpers module", | ||
@@ -34,3 +34,4 @@ "main": "index", | ||
"Denis Carriere <@DenisCarriere>", | ||
"William Nordmann <@wnordmann>" | ||
"William Nordmann <@wnordmann>", | ||
"Vamshi Palreddy <@vamshi29292>" | ||
], | ||
@@ -37,0 +38,0 @@ "license": "MIT", |
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
70727