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

@dcloudio/uni-nvue-styler

Package Overview
Dependencies
Maintainers
9
Versions
424
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dcloudio/uni-nvue-styler - npm Package Compare versions

Comparing version 0.0.1-nvue3.3040020220224004 to 0.0.1-nvue3.3040020220225001

12

dist/uni-nvue-styler.cjs.js

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

var unit = match[1];
if (!unit) {
if (!unit || unit === 'px') {
return { value: parseFloat(v) };

@@ -1086,4 +1086,10 @@ }

}
let parentSelector = res[1].trim();
let curSelector = res[2].trim().substring(1);
let parentSelector = res[1];
let curSelector = res[2].substring(1);
// .a.b => a.b
const dotIndex = curSelector.indexOf('.');
if (dotIndex > -1) {
parentSelector += curSelector.substring(dotIndex);
curSelector = curSelector.substring(0, dotIndex);
}
const pseudoIndex = curSelector.indexOf(':');

@@ -1090,0 +1096,0 @@ if (pseudoIndex > -1) {

{
"name": "@dcloudio/uni-nvue-styler",
"version": "0.0.1-nvue3.3040020220224004",
"version": "0.0.1-nvue3.3040020220225001",
"description": "uni-nvue-styler",

@@ -5,0 +5,0 @@ "main": "./dist/uni-nvue-styler.cjs.js",

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