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

febs-browser

Package Overview
Dependencies
Maintainers
1
Versions
146
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

febs-browser - npm Package Compare versions

Comparing version

to
0.7.16

21

libs/dom.js

@@ -26,2 +26,4 @@ ( function( global, factory ) {

var utils = require('./utils');
// - parentNodes 父节点 (HTMLNode)

@@ -1323,10 +1325,21 @@ // - name 子节点selector.

CreateDom.extend = function(plugin) {
if (plugin) {
for (const key in plugin) {
if (arguments.length == 0)
return {}
if (arguments.length == 1) {
for (const key in arguments[0]) {
if (key == 'extend' || key == 'fn') continue;
if (typeof plugin[key] === 'function') {
CreateDom[key] = plugin[key];
if (typeof arguments[0][key] === 'function') {
CreateDom[key] = arguments[0][key];
}
}
return this;
}
else {
var o = {};
for (var i = 0; i < arguments.length; i++) {
o = utils.mergeMap(o, arguments[i]);
}
return o;
} // if..else.
}

@@ -1333,0 +1346,0 @@

2

package.json

@@ -73,3 +73,3 @@ {

"name": "febs-browser",
"version": "0.7.15"
"version": "0.7.16"
}

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display