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

@area17/a17-helpers

Package Overview
Dependencies
Maintainers
4
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@area17/a17-helpers - npm Package Compare versions

Comparing version

to
0.7.2

2

dist/prod.js

@@ -120,2 +120,4 @@ 'use strict';

request.send(options.type === 'POST' ? options.queryString.replace('?', '') : '');
return request;
};

@@ -122,0 +124,0 @@

2

package.json
{
"name": "@area17/a17-helpers",
"version": "0.7.1",
"version": "0.7.2",
"description": "A js helper package",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -25,2 +25,4 @@ # A17 JS Helpers

Please make sure you run `npm run prod` after making changes. This will compile all your changes to ES5 ready version and then you can feel free to publish to npm.
### .editorconfig

@@ -54,2 +56,5 @@

**0.7.2**
* ajaxRequest returns the request so you can abort it in your project function
**0.7.1**

@@ -56,0 +61,0 @@ * Scroll to Y : call the onComplete callback even if not scrolling

@@ -64,4 +64,6 @@ import queryStringHandler from './queryStringHandler';

request.send((options.type === 'POST') ? options.queryString.replace('?', '') : '');
return request;
};
export default ajaxRequest;