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

react-fullstory-updated

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-fullstory-updated - npm Package Compare versions

Comparing version 1.0.3 to 1.0.4

7

build/index.js

@@ -62,3 +62,4 @@ 'use strict';

host = props.host,
namespace = props.namespace;
namespace = props.namespace,
setSessionURL = props.setSessionURL;

@@ -124,2 +125,6 @@

})(window, document, window['_fs_namespace'], 'script', 'user');
window['_fs_ready'] = function () {
var sessionUrl = FS.getCurrentSessionURL();
if (setSessionURL) setSessionURL(sessionUrl);
};
}

@@ -126,0 +131,0 @@ return _this;

2

package.json
{
"name": "react-fullstory-updated",
"version": "1.0.3",
"version": "1.0.4",
"description": "A component to initialize Fullstory in your application",

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

@@ -33,3 +33,3 @@ import { Component } from 'react';

const { org, debug, host, namespace } = props;
const { org, debug, host, namespace, setSessionURL } = props;

@@ -94,2 +94,6 @@ if (!org || !canUseDOM) {

})(window, document, window['_fs_namespace'], 'script', 'user');
window['_fs_ready'] = function() {
let sessionUrl = FS.getCurrentSessionURL();
if (setSessionURL) setSessionURL(sessionUrl)
};
}

@@ -96,0 +100,0 @@ }

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