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

postcss-logical

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-logical - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

4

CHANGELOG.md
# Changes to PostCSS Logical Properties
### 1.1.1 (March 21, 2017)
- Fix `dir` option to allow falsey value
### 1.1.0 (March 20, 2017)

@@ -4,0 +8,0 @@

2

index.cjs.js

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

var preserve = Boolean(Object(opts).preserve);
var dir = !preserve && 'dir' in Object(opts) ? /^rtl$/i.test(Object(opts).dir) ? 'rtl' : 'ltr' : false;
var dir = !preserve && typeof Object(opts).dir === 'string' ? /^rtl$/i.test(opts.dir) ? 'rtl' : 'ltr' : false;

@@ -373,0 +373,0 @@ return function (root) {

@@ -366,3 +366,3 @@ import postcss from 'postcss';

var preserve = Boolean(Object(opts).preserve);
var dir = !preserve && 'dir' in Object(opts) ? /^rtl$/i.test(Object(opts).dir) ? 'rtl' : 'ltr' : false;
var dir = !preserve && typeof Object(opts).dir === 'string' ? /^rtl$/i.test(opts.dir) ? 'rtl' : 'ltr' : false;

@@ -369,0 +369,0 @@ return function (root) {

{
"name": "postcss-logical",
"version": "1.1.0",
"version": "1.1.1",
"description": "Use logical properties and values in CSS",

@@ -5,0 +5,0 @@ "author": "Jonathan Neal <jonathantneal@hotmail.com>",

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