New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@dcloudio/uni-nvue-styler

Package Overview
Dependencies
Maintainers
9
Versions
435
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.3040020220207001 to 0.0.1-nvue3.3040020220211001

7

dist/uni-nvue-styler.cjs.js

@@ -44,2 +44,7 @@ 'use strict';

});
const hyphenateRE$1 = /\B([A-Z])/g;
/**
* @private
*/
const hyphenate = cacheStringFunction$1((str) => str.replace(hyphenateRE$1, '-$1').toLowerCase());

@@ -163,3 +168,3 @@ function createDecl(prop, value, important, raws, source) {

const { prop, value, important, raws, source } = decl;
let property = prop.split('-')[1];
let property = hyphenate(prop).split('-')[1];
const splitResult = value.replace(/\s*,\s*/g, ',').split(/\s+/);

@@ -166,0 +171,0 @@ switch (splitResult.length) {

4

dist/uni-nvue-styler.es.js

@@ -1,2 +0,2 @@

import { capitalize, extend } from '@vue/shared';
import { hyphenate, capitalize, extend } from '@vue/shared';

@@ -52,3 +52,3 @@ function createDecl(prop, value, important, raws, source) {

const { prop, value, important, raws, source } = decl;
let property = prop.split('-')[1];
let property = hyphenate(prop).split('-')[1];
{

@@ -55,0 +55,0 @@ property = capitalize(property);

{
"name": "@dcloudio/uni-nvue-styler",
"version": "0.0.1-nvue3.3040020220207001",
"version": "0.0.1-nvue3.3040020220211001",
"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