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

@expressen/tallahassee

Package Overview
Dependencies
Maintainers
0
Versions
208
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@expressen/tallahassee - npm Package Compare versions

Comparing version 16.0.2 to 16.0.3

4

lib/DocumentFragment.js

@@ -9,3 +9,2 @@ "use strict";

const dollarSymbol = Symbol.for("$");
const bodySymbol = Symbol.for("$body");
const loadedSymbol = Symbol.for("loaded");

@@ -49,5 +48,2 @@

}
clone(deep) {
return new DocumentFragment(this.ownerDocument, deep && { $elm: this[bodySymbol] });
}
querySelector(selector) {

@@ -54,0 +50,0 @@ return this.ownerDocument._getElement(this.$elm.find(selector).eq(0)) || null;

21

lib/Element.js

@@ -368,11 +368,22 @@ "use strict";

}
replaceChildren(newChildren) {
replaceChildren() {
this.$elm.contents().remove();
if (newChildren !== undefined) {
this.appendChild(newChildren);
} else {
for (const child of arguments) {
this.appendChild(child);
}
if (arguments.length === 0) {
this._emitter.emit("_insert");
}
}
replaceWith() {
const params = [];
for (const newElement of arguments) {
if (newElement && newElement.$elm) {
params.push(newElement.$elm);
} else {
params.push(String(newElement));
}
}
this.$elm.replaceWith(params);
}
removeAttribute(name) {

@@ -379,0 +390,0 @@ if (!this.hasAttribute(name)) return;

{
"name": "@expressen/tallahassee",
"version": "16.0.2",
"version": "16.0.3",
"description": "Lightweight client testing framework",

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

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