Socket
Socket
Sign inDemoInstall

postcss-normalize-repeat-style

Package Overview
Dependencies
5
Maintainers
7
Versions
36
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 5.0.2 to 5.0.3

4

dist/index.js

@@ -18,3 +18,3 @@ "use strict";

const repeatKeywords = [..._map.default.values()];
const repeatKeywords = new Set(_map.default.values());

@@ -77,3 +77,3 @@ function isCommaNode(node) {

const isRepeatKeyword = node.type === 'word' && repeatKeywords.includes(node.value.toLowerCase());
const isRepeatKeyword = node.type === 'word' && repeatKeywords.has(node.value.toLowerCase());

@@ -80,0 +80,0 @@ if (ranges[rangeIndex].start === null && isRepeatKeyword) {

{
"name": "postcss-normalize-repeat-style",
"version": "5.0.2",
"version": "5.0.3",
"description": "Convert two value syntax for repeat-style into one value.",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

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