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

@stylable/core

Package Overview
Dependencies
Maintainers
5
Versions
218
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@stylable/core - npm Package Compare versions

Comparing version 2.0.8 to 2.0.9

2

cjs/stylable-transformer.js

@@ -559,3 +559,3 @@ "use strict";

}
// find if the current symbol exsists in the initial meta;
// find if the current symbol exists in the initial meta;
var symbol = meta.mappedSymbols[name];

@@ -562,0 +562,0 @@ var current = meta;

@@ -7,4 +7,6 @@ "use strict";

if (s != null && typeof Object.getOwnPropertySymbols === "function")
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) if (e.indexOf(p[i]) < 0)
t[p[i]] = s[p[i]];
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
t[p[i]] = s[p[i]];
}
return t;

@@ -11,0 +13,0 @@ };

{
"name": "@stylable/core",
"version": "2.0.8",
"version": "2.0.9",
"description": "CSS for Components",

@@ -48,3 +48,3 @@ "main": "./cjs/index.js",

"license": "BSD-3-Clause",
"gitHead": "410703370ef3662f36ced7d725e277d3adb4b523"
"gitHead": "c5d03f01e0d44533d093935784b20c66e602fcea"
}

@@ -825,3 +825,3 @@ import cloneDeep from 'lodash.clonedeep';

// find if the current symbol exsists in the initial meta;
// find if the current symbol exists in the initial meta;

@@ -828,0 +828,0 @@ let symbol = meta.mappedSymbols[name];

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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