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

domql

Package Overview
Dependencies
Maintainers
1
Versions
290
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.12 to 1.5.13

2

package.json

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

"author": "rackai",
"version": "1.5.12",
"version": "1.5.13",
"repository": "https://github.com/rackai/domql",

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

@@ -14,3 +14,3 @@ 'use strict'

import { assignClass } from './mixins/classList'
import { isFunction, isNumber, isString, createID, isNode } from '../utils'
import { isFunction, isNumber, isString, createID, isNode, exec } from '../utils'
import { remove, lookup, setProps, log, keys, parse, parseDeep } from './methods'

@@ -50,7 +50,8 @@ import cacheNode from './cache'

const { extend, component } = element
if (isString(extend))
if (components[extend]) element.extend = components[extend]
const execExtend = exec(extend, element)
if (isString(execExtend))
if (components[execExtend]) element.extend = components[execExtend]
else {
if (ENV === 'test' || ENV === 'development') {
console.warn(extend, 'is not in library', components, element)
console.warn(execExtend, 'is not in library', components, element)
console.warn('replacing with ', {})

@@ -57,0 +58,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