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

@xiee/utils

Package Overview
Dependencies
Maintainers
1
Versions
173
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@xiee/utils - npm Package Compare versions

Comparing version 1.2.1 to 1.2.2

10

js/comment-utils.js

@@ -16,2 +16,12 @@ (function(d) {

location.hash.match(/^#comment-[0-9]+$/) && a.scrollIntoView();
// create a new script and change attribute 'data-src' to 'src' (to actually load the script)
const s = a.querySelector('script[data-src]');
if (!s) return;
const r = s.dataset.src, s2 = d.createElement('script'), b = s.attributes;
for (let i = 0; i < b.length; i++) {
s2.setAttribute(b[i].name, b[i].value);
}
s2.src = r;
s.remove();
a.appendChild(s2);
})(document);

2

package.json
{
"name": "@xiee/utils",
"version": "1.2.1",
"version": "1.2.2",
"description": "Miscellaneous tools and utilities to manipulate HTML pages",

@@ -5,0 +5,0 @@ "scripts": {

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