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

circle-ihk

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

circle-ihk - npm Package Compare versions

Comparing version 1.0.11 to 1.0.12

12

dist/utils/format-node.js

@@ -15,5 +15,11 @@ import each from './each';

each(contentClone.getElementsByTagName('img'), (item) => {
const target = item._mirrorElement && item._mirrorElement._mirrorElement
? item._mirrorElement._mirrorElement
: item;
let target = item;
if (item._mirrorElement) {
if (isElement(item._mirrorElement)) {
target = item._mirrorElement;
}
else if (item._mirrorElement._mirrorElement) {
target = item._mirrorElement._mirrorElement;
}
}
const attrToRemove = [];

@@ -20,0 +26,0 @@ each(item.attributes, (attribute) => {

{
"name": "circle-ihk",
"version": "1.0.11",
"version": "1.0.12",
"license": "MIT",

@@ -5,0 +5,0 @@ "description": "Circle Reader Component Library",

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