@fullstory/browser
Advanced tools
Comparing version 2.0.4 to 2.0.5
@@ -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; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
41554