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

dom-helpers

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dom-helpers - npm Package Compare versions

Comparing version 3.2.0 to 3.2.1

2

package.json
{
"name": "dom-helpers",
"version": "3.2.0",
"version": "3.2.1",
"description": "tiny modular DOM lib for ie8+ ",

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

@@ -16,4 +16,2 @@ # dom-helpers

It does expect certain, polyfillable, es5 features to be present for which you can use `es5-shim` for ie8
```js

@@ -30,2 +28,4 @@ if (document.addEventListener)

dom-helpers does expect certain, polyfillable, es5 features to be present for which you can use `es5-shim` for ie8
The real advantage to this collection is that any method can be required individually, meaning tools like Browserify or webpack will only include the exact methods you use. This is great for environments where jQuery doesn't make sense, such as `React` where you only occasionally need to do direct DOM manipulation.

@@ -32,0 +32,0 @@

@@ -76,3 +76,3 @@ 'use strict';

Moz: function Moz(e) {
return 'moz' + e;
return e.toLowerCase();
},

@@ -106,3 +106,3 @@ Webkit: function Webkit(e) {

if (!animationEnd && 'animationName' in style) transitionEnd = 'animationend';
if (!animationEnd && 'animationName' in style) animationEnd = 'animationend';

@@ -109,0 +109,0 @@ style = null;

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