Socket
Socket
Sign inDemoInstall

domql

Package Overview
Dependencies
Maintainers
1
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.5.7 to 1.5.8

2

package.json

@@ -6,3 +6,3 @@ {

"author": "rackai",
"version": "1.5.7",
"version": "1.5.8",
"repository": "https://github.com/rackai/domql",

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

'use strict'
import create from './create'
import { isEqualDeep } from '../utils'
import { isEqualDeep, isFunction } from '../utils'
import { registry } from './mixins'

@@ -15,5 +15,6 @@

if (element.__cached && element.__cached.content) {
if (element.__cached.content.tag === 'fragment') element.__cached.content.parent.node.innerHTML = ''
else if (element.__cached.content) element.__cached.content?.remove()
const { __cached } = __cached
if (__cached && __cached.content) {
if (__cached.content.tag === 'fragment') __cached.content.parent.node.innerHTML = ''
else if (__cached.content && isFunction(__cached.content.remove)) __cached.content.remove()
}

@@ -20,0 +21,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