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

raptor-dom

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

raptor-dom - npm Package Compare versions

Comparing version 0.2.0-beta to 0.2.1-beta

lib/raptor-dom_documentReady.js

18

lib/raptor-dom.js

@@ -100,2 +100,20 @@ 'use strict';

var jquery = window.$;
if (!jquery) {
try {
jquery = require('jquery');
}
catch(e) {}
}
if (jquery) {
dom.ready = function(callback, thisObj) {
jquery(function() {
callback.call(thisObj);
});
};
} else {
dom.ready = require('./raptor-dom_documentReady');
}
module.exports = dom;

7

package.json
{
"path": "/Users/psteeleidem/development/github/raptorjs3/raptor-dom/package.json",
"name": "raptor-dom",
"version": "0.2.0-beta",
"description": "Utility functions for working with the DOM",

@@ -24,3 +24,4 @@ "repository": {

"registry": "https://registry.npmjs.org/"
}
}
},
"version": "0.2.1-beta"
}
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