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

css-tree

Package Overview
Dependencies
Maintainers
2
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

css-tree - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

4

CHANGELOG.md

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

## 1.1.2
- Rolled back to use spread syntax in object literals since it not supported by nodejs < 8.3 (#145)
## 1.1.1 (November 18, 2020)

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

4

lib/syntax/config/mix.js

@@ -23,3 +23,3 @@ const hasOwnProperty = Object.prototype.hasOwnProperty;

return isObject(value)
? { ...value }
? Object.assign({}, value)
: value;

@@ -61,3 +61,3 @@ }

const result = { ...a };
const result = Object.assign({}, a);
for (let key in b) {

@@ -64,0 +64,0 @@ if (hasOwnProperty.call(b, key)) {

{
"name": "css-tree",
"version": "1.1.1",
"version": "1.1.2",
"description": "A tool set for CSS: fast detailed parser (CSS → AST), walker (AST traversal), generator (AST → CSS) and lexer (validation and matching) based on specs and browser implementations",

@@ -5,0 +5,0 @@ "author": "Roman Dvornov <rdvornov@gmail.com> (https://github.com/lahmatiy)",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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