fela-utils
Advanced tools
Comparing version 8.0.4 to 8.0.5
export default function isUndefinedValue(value) { | ||
return value === undefined || typeof value === 'string' && value.indexOf('undefined') !== -1; | ||
return value === undefined || value === null || typeof value === 'string' && value.match(/(undefined|null)/) !== null; | ||
} |
@@ -8,3 +8,3 @@ 'use strict'; | ||
function isUndefinedValue(value) { | ||
return value === undefined || typeof value === 'string' && value.indexOf('undefined') !== -1; | ||
return value === undefined || value === null || typeof value === 'string' && value.match(/(undefined|null)/) !== null; | ||
} |
{ | ||
"name": "fela-utils", | ||
"version": "8.0.4", | ||
"version": "8.0.5", | ||
"description": "Internal utilities for Fela", | ||
@@ -28,4 +28,4 @@ "main": "lib/index.js", | ||
"devDependencies": { | ||
"fela": "^6.1.4" | ||
"fela": "^6.1.5" | ||
} | ||
} |
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
23770