Socket
Socket
Sign inDemoInstall

postcss-selector-parser

Package Overview
Dependencies
3
Maintainers
1
Versions
57
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.0 to 1.0.1

4

CHANGELOG.md

@@ -0,1 +1,5 @@

# 1.0.1
* Fixes using `insertAfter` and `insertBefore` during iteration.
# 1.0.0

@@ -2,0 +6,0 @@

8

dist/selectors/container.js

@@ -136,4 +136,4 @@ 'use strict';

index = this.indexes[id];
if (exist <= index) {
this.indexes[id] = index + nodes.length;
if (oldIndex <= index) {
this.indexes[id] = index + this.nodes.length;
}

@@ -153,4 +153,4 @@ }

index = this.indexes[id];
if (exist <= index) {
this.indexes[id] = index + nodes.length;
if (oldIndex <= index) {
this.indexes[id] = index + this.nodes.length;
}

@@ -157,0 +157,0 @@ }

{
"name": "postcss-selector-parser",
"version": "1.0.0",
"version": "1.0.1",
"devDependencies": {

@@ -5,0 +5,0 @@ "babel": "^5.4.3",

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc