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

@erickmerchant/framework

Package Overview
Dependencies
Maintainers
1
Versions
244
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@erickmerchant/framework - npm Package Compare versions

Comparing version 41.2.0 to 41.2.1

2

package.json
{
"name": "@erickmerchant/framework",
"version": "41.2.0",
"version": "41.2.1",
"description": "A front-end framework.",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/erickmerchant/framework#readme",

@@ -83,12 +83,14 @@ const escape = (str) =>

if (child?.type === 'variable') {
child = resolve(variables[child.value])
child = variables[child.value]
}
if (child?.[Symbol.iterator] != null && typeof child !== 'string') {
for (const c of child) {
descendants.push(c.key != null ? c.value : c)
}
} else {
descendants.push(child)
if (child?.[Symbol.iterator] == null || typeof child === 'string') {
child = [child]
}
for (let c of child) {
c = resolve(c) ?? ''
descendants.push(c.key != null ? c.value : c)
}
}

@@ -95,0 +97,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