Socket
Socket
Sign inDemoInstall

@availity/analytics-core

Package Overview
Dependencies
Maintainers
14
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@availity/analytics-core - npm Package Compare versions

Comparing version 2.8.16 to 2.8.17

8

CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

## 2.8.17 (2020-04-08)
**Note:** Version bump only for package @availity/analytics-core
## 2.8.16 (2020-04-06)

@@ -8,0 +16,0 @@

@@ -207,2 +207,7 @@ "use strict";

this.trackPageView = function (url) {
// hashchanges are an object so we want to grab the new url from it
if (typeof url === 'object') {
url = url.newURL;
}
url = url || window.location.href;

@@ -209,0 +214,0 @@ var promises = [];

4

package.json
{
"name": "@availity/analytics-core",
"version": "2.8.16",
"version": "2.8.17",
"description": "Analytics base configuration for sdk-js",

@@ -12,3 +12,3 @@ "main": "lib/index.js",

},
"gitHead": "23896c166e4180af48faff1a1f42df251743885e"
"gitHead": "d068a6163383cf63e04b525bfa55a93b51164677"
}

@@ -220,2 +220,7 @@ const isLeftClickEvent = event => event.button === 0;

trackPageView = url => {
// hashchanges are an object so we want to grab the new url from it
if (typeof url === 'object') {
url = url.newURL;
}
url = url || window.location.href;

@@ -222,0 +227,0 @@ const promises = [];

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