🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

postcss-normalize-repeat-style

Package Overview
Dependencies
Maintainers
7
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-normalize-repeat-style - npm Package Compare versions

Comparing version

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",