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.7 to 0.0.8

6

build/doc.all.js

@@ -27,7 +27,7 @@ void function(root){

on : function(el, type, cb){
el[el.addEventListener ? 'addEventListener' : 'attachEvent'](type, cb)
el.addEventListener ? el.addEventListener(type, cb) : el.attachEvent('on' + type, cb)
return cb }
, off : function(el, type, cb){
el[el.removeEventListener ? 'removeEventListener' : 'detachEvent'](type, cb, false)
el.removeEventListener ? el.removeEventListener(type, cb) : el.detachEvent('on' + type, cb)
return el }

@@ -108,3 +108,3 @@

each(els, function(el){
var classes = el.className.split(' ')
if ( el.className.split(' ')
each(classes, function(className){

@@ -111,0 +111,0 @@ if ( className == name ) ret.push(el) }) })

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

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

@@ -14,7 +14,7 @@

on : function(el, type, cb){
el[el.addEventListener ? 'addEventListener' : 'attachEvent'](type, cb)
el.addEventListener ? el.addEventListener(type, cb) : el.attachEvent('on' + type, cb)
return cb }
, off : function(el, type, cb){
el[el.removeEventListener ? 'removeEventListener' : 'detachEvent'](type, cb, false)
el.removeEventListener ? el.removeEventListener(type, cb) : el.detachEvent('on' + type, cb)
return el }

@@ -21,0 +21,0 @@

@@ -30,3 +30,3 @@

each(els, function(el){
var classes = el.className.split(' ')
if ( el.className.split(' ')
each(classes, function(className){

@@ -33,0 +33,0 @@ if ( className == name ) ret.push(el) }) })

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