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

ajax

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

ajax - npm Package Compare versions

Comparing version 0.0.3 to 0.0.4

9

lib/ajax.js

@@ -6,3 +6,3 @@ /* See license.txt for terms of usage */

exports.get = function(url, params, cb) {
exports.send(url, 'POST', params, cb);
exports.send(url, 'GET', params, cb);
}

@@ -113,1 +113,8 @@

}
exports.postJSON = function(url, params, cb) {
exports.post(url, params, function(data) {
var result = eval(data);
cb(0, result);
});
};

2

package.json
{
"name": "ajax",
"description": "Utilities for loading JSON and XML.",
"version": "0.0.3",
"version": "0.0.4",
"homepage": "http://github.com/joehewitt/ajax",

@@ -6,0 +6,0 @@ "repository": {

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