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
170
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.1.13 to 1.1.14

16

js/custom-disqus.js

@@ -80,2 +80,18 @@ // lazyload Disqus on my personal site

};
s.onload = function(e) {
// if Disqus comment count is zero, just get rid of the Disqus tab
var dc = d.getElementById('disqus_count');
if (!dc) return;
var s3 = d.createElement('script');
s3.src = '//yihui.disqus.com/count.js';
s3.id = 'dsq-count-scr';
t.appendChild(s3);
new MutationObserver(() => {
if (dc.innerText == '' || dc.innerText > 0) return;
selectTab2(); loadScript();
a.append(a.querySelector('#tab-2 ~ .panel'));
a.querySelector('.tabs').remove();
a.querySelector('.panel').style.display = 'block';
}).observe(dc, {characterData: true, childList: true});
};
// show comments when the hash means to jump to a comment

@@ -82,0 +98,0 @@ if (location.hash.match(/^#comment-[0-9]+$/)) return l(true);

2

package.json
{
"name": "@xiee/utils",
"version": "1.1.13",
"version": "1.1.14",
"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