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

@thisway/utils

Package Overview
Dependencies
Maintainers
0
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@thisway/utils - npm Package Compare versions

Comparing version 0.10.0-beta.0 to 0.10.0-beta.1

13

index.js

@@ -471,5 +471,14 @@ import { derived } from "svelte/store";

const hierarchy = buildHierarchy(target);
const elements = hierarchy.filter((el) => checkBoundary(el) && isScrollableElement(el));
const elements = [];
for (let index = hierarchy.length; index >= 0; index--) {
const element = hierarchy[index];
if (!checkBoundary(element)) {
break;
}
if (isScrollableElement(element)) {
elements.push(element);
}
}
const iframes = hierarchy.filter(checkElementType("iframe"));
return [elements, iframes];
return [elements.reverse(), iframes];
}

@@ -476,0 +485,0 @@ function computeScrollIntoView(target, options) {

2

package.json
{
"name": "@thisway/utils",
"version": "0.10.0-beta.0",
"version": "0.10.0-beta.1",
"type": "module",

@@ -5,0 +5,0 @@ "sideEffects": false,

Sorry, the diff of this file is not supported yet

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