Socket
Socket
Sign inDemoInstall

@brillout/libassert

Package Overview
Dependencies
0
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.4.1 to 0.4.2

2

dist/cleanStackTrace.js

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

function isStackTraceLine(line) {
return line.split(" ").filter(Boolean).join("").startsWith("at");
return line.startsWith(' at ');
}

@@ -34,0 +34,0 @@ function splitByLine(str) {

{
"name": "@brillout/libassert",
"description": "Assertions for library authors.",
"version": "0.4.1",
"version": "0.4.2",
"main": "dist/index.js",

@@ -6,0 +6,0 @@ "scripts": {

@@ -44,3 +44,3 @@ export { cleanStackTrace };

function isStackTraceLine(line: string): boolean {
return line.split(" ").filter(Boolean).join("").startsWith("at");
return line.startsWith(' at ')
}

@@ -47,0 +47,0 @@

Sorry, the diff of this file is not supported yet

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