New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@johanblumenberg/ts-mockito

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@johanblumenberg/ts-mockito - npm Package Compare versions

Comparing version 1.0.17 to 1.0.18

2

lib/utils/MethodCallToStringConverter.js

@@ -12,3 +12,3 @@ "use strict";

MethodCallToStringConverter.prototype.convertActualCalls = function (calls) {
return calls.map(function (call) { return call.methodName + '(' + call.args.map(function (arg) { return arg.toString(); }).join(', ') + ')'; });
return calls.map(function (call) { return call.methodName + '(' + call.args.map(function (arg) { return String(arg); }).join(', ') + ')'; });
};

@@ -15,0 +15,0 @@ return MethodCallToStringConverter;

{
"name": "@johanblumenberg/ts-mockito",
"version": "1.0.17",
"version": "1.0.18",
"description": "Mocking library for TypeScript",

@@ -5,0 +5,0 @@ "main": "lib/ts-mockito.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