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

jasmine-ts-console-reporter

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jasmine-ts-console-reporter - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

2

package.json
{
"name": "jasmine-ts-console-reporter",
"version": "1.2.0",
"version": "1.2.1",
"description": "A Jasmine Console Reporter that remaps Typescript files.",

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

@@ -27,5 +27,5 @@ const path = require('path');

if (options.filter instanceof RegExp) {
result = result && options.filter.test(stackFrame.fileName);
result = result && !options.filter.test(stackFrame.fileName);
} else if (typeof options.filter === 'string') {
result = result && minimatch(stackFrame.fileName, options.filter);
result = result && !minimatch(stackFrame.fileName, options.filter);
}

@@ -32,0 +32,0 @@ return result;

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