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

styled-system

Package Overview
Dependencies
Maintainers
1
Versions
149
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

styled-system - npm Package Compare versions

Comparing version 1.0.0-10 to 1.0.0-11

2

dist/util.js

@@ -57,3 +57,3 @@ 'use strict';

return Object.assign({}, a, b, Object.keys(b).reduce(function (obj, key) {
return Object.assign(obj, _defineProperty({}, key, _typeof(a[key]) === 'object' ? merge(a[key], b[key]) : b[key]));
return Object.assign(obj, _defineProperty({}, key, a[key] !== null && _typeof(a[key]) === 'object' ? merge(a[key], b[key]) : b[key]));
}, {}));

@@ -60,0 +60,0 @@ };

{
"name": "styled-system",
"version": "1.0.0-10",
"version": "1.0.0-11",
"description": "Design system utilities for styled-components, glamorous, and other css-in-js libraries",

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

@@ -26,3 +26,5 @@ const { breakpoints } = require('./constants')

Object.assign(obj, {
[key]: typeof a[key] === 'object' ? merge(a[key], b[key]) : b[key]
[key]: a[key] !== null && typeof a[key] === 'object'
? merge(a[key], b[key])
: b[key]
}),

@@ -29,0 +31,0 @@ {}))

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