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

@reshadow/core

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@reshadow/core - npm Package Compare versions

Comparing version 0.0.1-alpha.36 to 0.0.1-alpha.41

22

index.js

@@ -70,6 +70,19 @@ "use strict";

var isSSR = !(typeof window !== 'undefined' && window.document && window.document.createElement);
var serverStyles = '';
var serverMap = {};
var getStyles = function getStyles() {
return serverStyles;
return {
map: serverMap,
get css() {
var serverStyles = '';
for (var id in serverMap) {
serverStyles += "<style type=\"text/css\" id=\"".concat(id, "\">").concat(serverMap[id], "</style>");
}
return serverStyles;
}
};
};

@@ -83,3 +96,3 @@

if (isSSR) {
serverStyles += "<style type=\"text/css\" id=\"".concat(id, "\">").concat(code, "</style>");
serverMap[id] = code;
return;

@@ -244,3 +257,4 @@ }

USE_PREFIX: USE_PREFIX,
KEYS: KEYS
KEYS: KEYS,
RESHADOW_ID: RESHADOW_ID
});

2

package.json
{
"name": "@reshadow/core",
"version": "0.0.1-alpha.36",
"version": "0.0.1-alpha.41",
"description": "reshadow core runtime",

@@ -5,0 +5,0 @@ "main": "index.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