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

106

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

106 - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

8

lib/index.js

@@ -102,7 +102,9 @@ "use strict";

if ( !stack )
return [];
return [ ];
var lines = ( stack && stack.length )
var lines = ( 'string' === typeof stack )
? stack.split( "\n" )
: [ ];
: Array.isArray( stack )
? stack
: [ ];

@@ -109,0 +111,0 @@ if ( lines[ 0 ] === err.name + ": " + err.message )

@@ -5,3 +5,3 @@ {

"license": "MIT",
"version": "1.1.1",
"version": "1.1.2",
"author": "Gustaf Räntilä <g.rantila@gmail.com>",

@@ -8,0 +8,0 @@ "repository": {

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