Comparing version 1.1.1 to 1.1.2
@@ -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 @@ |
@@ -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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
988327