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

postcss-merge-idents

Package Overview
Dependencies
Maintainers
8
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-merge-idents - npm Package Compare versions

Comparing version 6.0.1 to 6.0.2

4

package.json
{
"name": "postcss-merge-idents",
"version": "6.0.1",
"version": "6.0.2",
"description": "Merge keyframe and counter style identifiers.",

@@ -37,3 +37,3 @@ "main": "src/index.js",

"devDependencies": {
"postcss": "^8.4.32"
"postcss": "^8.4.35"
},

@@ -40,0 +40,0 @@ "peerDependencies": {

@@ -80,5 +80,8 @@ 'use strict';

} else {
let toString = node.nodes.toString();
const toString = node.nodes ? node.nodes.toString() : '';
relevant.cache.forEach((cached) => {
const cachedStringContent = cached.nodes
? cached.nodes.toString()
: '';
if (

@@ -90,3 +93,3 @@ cached.name.toLowerCase() === node.name.toLowerCase() &&

) &&
cached.nodes.toString() === toString
cachedStringContent === toString
) {

@@ -93,0 +96,0 @@ relevant.removals.push(cached);

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