Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fela-utils

Package Overview
Dependencies
Maintainers
1
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fela-utils - npm Package Compare versions

Comparing version 8.0.4 to 8.0.5

2

es/isUndefinedValue.js
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"
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc