Socket
Socket
Sign inDemoInstall

domql

Package Overview
Dependencies
Maintainers
2
Versions
260
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

domql - npm Package Compare versions

Comparing version 1.6.34 to 1.6.35

2

package.json
{
"name": "domql",
"description": "DOM rendering Javascript framework at early stage.",
"version": "1.6.34",
"version": "1.6.35",
"repository": "https://github.com/domql/domql",

@@ -6,0 +6,0 @@ "publishConfig": {

@@ -42,9 +42,9 @@ 'use strict'

if (parent.childExtendRecursive) {
const canExtendRecursive = props && !props.ignoreChildExtendRecursive && element.key !== '__text'
if (!canExtendRecursive) return
const childExtendRecursiveStack = getExtendStack(parent.childExtendRecursive)
// add error if childExtendRecursive contains element which goes to infinite loop
childExtendStack = childExtendStack.concat(childExtendRecursiveStack)
element.childExtendRecursive = parent.childExtendRecursive
const canExtendRecursive = !props?.ignoreChildExtendRecursive && element.key !== '__text'
if (canExtendRecursive) {
const childExtendRecursiveStack = getExtendStack(parent.childExtendRecursive)
// add error if childExtendRecursive contains element which goes to infinite loop
childExtendStack = childExtendStack.concat(childExtendRecursiveStack)
element.childExtendRecursive = parent.childExtendRecursive
}
}

@@ -51,0 +51,0 @@ }

@@ -75,3 +75,2 @@ 'use strict'

const nextChild = __children[currentIndex + 1]
console.log(nextChild)

@@ -78,0 +77,0 @@ return parent[nextChild]

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