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

ebuilder-js

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ebuilder-js - npm Package Compare versions

Comparing version 0.0.11 to 0.0.12

2

package.json
{
"name": "ebuilder-js",
"version": "0.0.11",
"version": "0.0.12",
"description": "Highly configurable and easily manipulable elements in a single declaration, with a functionnal touch.",

@@ -5,0 +5,0 @@ "main": "./index.js",

@@ -74,3 +74,3 @@ "use strict";

exports.isValidSource = function (source) {
return source instanceof Element || exports.isTypeOf(source, 'string');
return exports.isString(source) || source instanceof Element || source instanceof ShadowRoot;
};

@@ -83,3 +83,3 @@

exports.isValidTarget = function (target) {
return exports.isEBObject(target) || target instanceof Element;
return exports.isEBObject(target) || target instanceof Element || target instanceof ShadowRoot;
};

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