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

@expressen/tallahassee

Package Overview
Dependencies
Maintainers
9
Versions
207
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 11.0.4 to 11.0.5

CHANGELOG.md

9

lib/Element.js

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

const {Event} = require("./Events");
const {getElementsByClassName, getElementsByTagName} = require("./HTMLCollection");
const {HTMLCollection, getElementsByClassName, getElementsByTagName} = require("./HTMLCollection");

@@ -102,4 +102,3 @@ const inputElements = ["INPUT", "BUTTON", "TEXTAREA"];

get children() {
if (!this.$elm) return [];
return this.$elm.children().map((_, e) => this._getElement(e)).toArray();
return new HTMLCollection(this, "> *");
}

@@ -217,3 +216,3 @@ get innerHTML() {

get scrollWidth() {
return this.children.reduce((acc, el) => {
return Array.from(this.children).reduce((acc, el) => {
acc += el.getBoundingClientRect().width;

@@ -224,3 +223,3 @@ return acc;

get scrollHeight() {
return this.children.reduce((acc, el) => {
return Array.from(this.children).reduce((acc, el) => {
acc += el.getBoundingClientRect().height;

@@ -227,0 +226,0 @@ return acc;

{
"name": "@expressen/tallahassee",
"version": "11.0.4",
"version": "11.0.5",
"description": "Expressen 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