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

@fullstory/browser

Package Overview
Dependencies
Maintainers
2
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fullstory/browser - npm Package Compare versions

Comparing version 2.0.4 to 2.0.5

4

dist/index.esm.js

@@ -126,3 +126,3 @@ import { initFS } from '@fullstory/snippet';

if (window._fs_dev_mode) {
var message = "FullStory is in dev mode and is not recording: ".concat(name, " method not executed");
var message = "FullStory is in dev mode and is not capturing: ".concat(name, " method not executed");
console.warn(message);

@@ -142,3 +142,3 @@ return message;

if (window._fs_dev_mode) {
var message = 'FullStory is in dev mode and is not recording: method not executed';
var message = "FullStory is in dev mode and is not capturing: ".concat(operation, " not executed");
console.warn(message);

@@ -145,0 +145,0 @@ return undefined;

@@ -128,3 +128,3 @@ 'use strict';

if (window._fs_dev_mode) {
var message = "FullStory is in dev mode and is not recording: ".concat(name, " method not executed");
var message = "FullStory is in dev mode and is not capturing: ".concat(name, " method not executed");
console.warn(message);

@@ -144,3 +144,3 @@ return message;

if (window._fs_dev_mode) {
var message = 'FullStory is in dev mode and is not recording: method not executed';
var message = "FullStory is in dev mode and is not capturing: ".concat(operation, " not executed");
console.warn(message);

@@ -147,0 +147,0 @@ return undefined;

{
"name": "@fullstory/browser",
"version": "2.0.4",
"version": "2.0.5",
"description": "The official Fullstory browser SDK",

@@ -5,0 +5,0 @@ "repository": "git://github.com/fullstorydev/fullstory-browser-sdk.git",

@@ -57,3 +57,3 @@ import { assert, expect } from 'chai';

it('should add _fs_dev_mode value to window when initialzed with devMode', () => {
it('should add _fs_dev_mode value to window when initialized with devMode', () => {
init({

@@ -112,3 +112,3 @@ orgId: testOrg,

expect(consoleWarnedMessage).to.match(/FullStory is in dev mode/);
expect(consoleWarnedMessage).to.equal('FullStory is in dev mode and is not capturing: log not executed');
});

@@ -115,0 +115,0 @@ });

@@ -166,3 +166,3 @@ import { initFS, FSApi } from '@fullstory/snippet';

if (window._fs_dev_mode) {
const message = `FullStory is in dev mode and is not recording: ${name} method not executed`;
const message = `FullStory is in dev mode and is not capturing: ${name} method not executed`;
console.warn(message);

@@ -185,3 +185,3 @@ return message;

if (window._fs_dev_mode) {
const message = 'FullStory is in dev mode and is not recording: method not executed';
const message = `FullStory is in dev mode and is not capturing: ${operation} not executed`;
console.warn(message);

@@ -188,0 +188,0 @@ return undefined;

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