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

react-hotjar

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-hotjar - npm Package Compare versions

Comparing version

to
2.1.0

{
"name": "react-hotjar",
"version": "2.0.4",
"version": "2.1.0",
"description": "Small component to implement Hotjar into your react application",

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

@@ -9,8 +9,13 @@ module.exports = function(id, sv) {

h._hjSettings = { hjid: id, hjsv: sv };
a = o.getElementsByTagName('head')[0];
r = o.createElement('script');
r.async = 1;
r.src = t + h._hjSettings.hjid + j + h._hjSettings.hjsv;
a.appendChild(r);
h._scriptPath = t + h._hjSettings.hjid + j + h._hjSettings.hjsv;
if(!document.querySelector(
'script[src*="' + h._scriptPath + '"]',
)){
a = o.getElementsByTagName('head')[0];
r = o.createElement('script');
r.async = 1;
r.src = h._scriptPath;
a.appendChild(r);
}
})(window, document, '//static.hotjar.com/c/hotjar-', '.js?sv=');
};