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

dom-doc

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dom-doc - npm Package Compare versions

Comparing version 0.0.8 to 0.0.9

9

build/doc.all.js

@@ -79,2 +79,3 @@ void function(root){

// SELECTORS

@@ -108,5 +109,7 @@

each(els, function(el){
if ( el.className.split(' ')
each(classes, function(className){
if ( className == name ) ret.push(el) }) })
var classes = el.className.split(' ')
for (var i = 0, len = classes.length; i < len; i += 1 )
if ( classes[i] == name ) {
ret.push(el)
break }})

@@ -113,0 +116,0 @@ return ret }

{
"name" : "dom-doc"
, "version" : "0.0.8"
, "version" : "0.0.9"
, "author" : "hughfdjackson"

@@ -5,0 +5,0 @@ , "main" : "build/doc.all.js"

// SELECTORS

@@ -30,5 +31,7 @@

each(els, function(el){
if ( el.className.split(' ')
each(classes, function(className){
if ( className == name ) ret.push(el) }) })
var classes = el.className.split(' ')
for (var i = 0, len = classes.length; i < len; i += 1 )
if ( classes[i] == name ) {
ret.push(el)
break }})

@@ -35,0 +38,0 @@ return ret }

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