Socket
Socket
Sign inDemoInstall

@devexpress/callsite-record

Package Overview
Dependencies
16
Maintainers
22
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.1.6 to 4.1.7

6

lib/index.js

@@ -61,4 +61,6 @@ var fs = require('fs');

var funcNameStartsWithTypeName = typeName && funcName.indexOf(typeName) === 0;
var funcNameEndsWithMethodName = methodName &&
funcName.indexOf('.' + methodName) === funcName.length - methodName.length - 1;
var expectedEndMethodIndex = methodName && funcName.length - methodName.length - 1;
var actualMethodIndex = funcName.indexOf('.' + methodName);
var funcNameEndsWithMethodName = actualMethodIndex >= 0 && expectedEndMethodIndex >= 0 &&
actualMethodIndex === expectedEndMethodIndex;

@@ -65,0 +67,0 @@ if (!funcNameStartsWithTypeName)

{
"name": "@devexpress/callsite-record",
"version": "4.1.6",
"version": "4.1.7",
"description": "Create fancy log entries for errors and function call sites.",

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc