Socket
Socket
Sign inDemoInstall

postcss-value-parser

Package Overview
Dependencies
0
Maintainers
2
Versions
36
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.0.3 to 4.1.0

8

lib/index.d.ts

@@ -28,4 +28,4 @@ declare namespace postcssValueParser {

/**
* The token at the end of the node
*/
* The token at the end of the node
*/
after: string;

@@ -89,3 +89,3 @@ }

*/
(nodes: Node): string;
(nodes: Node): string | undefined;
}

@@ -100,3 +100,3 @@

*/
(node: Node, index: number, nodes: Node[]): void | false;
(node: Node, index: number, nodes: Node[]): void | boolean;
}

@@ -103,0 +103,0 @@

@@ -19,3 +19,3 @@ function stringifyNode(node, custom) {

} else if (Array.isArray(node.nodes)) {
buf = stringify(node.nodes);
buf = stringify(node.nodes, custom);
if (type !== "function") {

@@ -22,0 +22,0 @@ return buf;

{
"name": "postcss-value-parser",
"version": "4.0.3",
"version": "4.1.0",
"description": "Transforms css values and at-rule params into the tree",

@@ -18,3 +18,3 @@ "main": "lib/index.js",

"scripts": {
"lint:prettier": "prettier '**/*.js' --list-different",
"lint:prettier": "prettier '**/*.js' '**/*.ts' --list-different",
"lint:js": "eslint . --cache",

@@ -21,0 +21,0 @@ "lint": "yarn lint:js && yarn lint:prettier",

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