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

@loki/browser

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@loki/browser - npm Package Compare versions

Comparing version 0.30.0 to 0.30.1

4

package.json
{
"name": "@loki/browser",
"version": "0.30.0",
"version": "0.30.1",
"description": "Loki browser integration",

@@ -28,3 +28,3 @@ "keywords": [

},
"gitHead": "3ad5b47e681013aeaa9a21f6b5465807262b9f29"
"gitHead": "6892c4bb8e0a906bcd9ede91f9b0a1949e98be4c"
}

@@ -22,2 +22,11 @@ /* eslint-disable no-underscore-dangle */

const isSerializable = (value) => {
try {
JSON.stringify(value);
return true;
} catch (_e) {
return false;
}
};
return getStorybook()

@@ -30,3 +39,6 @@ .map((component) => ({

Object.entries(component.parameters || {}).filter(
([key]) => !key.startsWith('__') && !blockedParams.includes(key)
([key, value]) =>
!key.startsWith('__') &&
!blockedParams.includes(key) &&
isSerializable(value)
)

@@ -33,0 +45,0 @@ ),

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