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

@ludens-reklame/profiler-client

Package Overview
Dependencies
Maintainers
6
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ludens-reklame/profiler-client - npm Package Compare versions

Comparing version 0.2.3 to 0.2.5

12

dist/Profiler.js

@@ -142,3 +142,13 @@ "use strict";

var ps = personalizations_1[i];
document.body.innerHTML += ps.code;
if (ps.code.includes('<script>')) {
var scriptContent = ps.code.match(new RegExp('<script>' + '(.*)' + '</script>'));
if (scriptContent && scriptContent.length > 1) {
var scriptTag = document.createElement('script');
scriptTag.innerHTML = scriptContent[1];
document.body.appendChild(scriptTag);
}
}
else {
document.body.insertAdjacentHTML('beforeend', ps.code);
}
}

@@ -145,0 +155,0 @@ });

2

package.json
{
"name": "@ludens-reklame/profiler-client",
"version": "0.2.3",
"version": "0.2.5",
"description": "Profiler for all",

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

Sorry, the diff of this file is not supported yet

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