Socket
Socket
Sign inDemoInstall

tape

Package Overview
Dependencies
Maintainers
3
Versions
158
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tape - npm Package Compare versions

Comparing version 5.7.0 to 5.7.1

7

lib/default_stream.js

@@ -33,3 +33,8 @@ 'use strict';

try {
console.log(line); // eslint-disable-line no-console
if (typeof console !== 'undefined' && console.log) { // eslint-disable-line no-console
console.log(line); // eslint-disable-line no-console
} else if (typeof document !== 'undefined') {
// for IE < 9
document.body.innerHTML += line + '<br />';
}
} catch (e) {

@@ -36,0 +41,0 @@ stream.emit('error', e);

6

package.json
{
"name": "tape",
"version": "5.7.0",
"version": "5.7.1",
"description": "tap-producing test harness for node and browsers",

@@ -29,3 +29,3 @@ "main": "index.js",

"@ljharb/resumer": "^0.0.1",
"@ljharb/through": "^2.3.9",
"@ljharb/through": "^2.3.11",
"array.prototype.every": "^1.1.5",

@@ -49,3 +49,3 @@ "call-bind": "^1.0.2",

"object.assign": "^4.1.4",
"resolve": "^2.0.0-next.4",
"resolve": "^2.0.0-next.5",
"string.prototype.trim": "^1.2.8"

@@ -52,0 +52,0 @@ },

Sorry, the diff of this file is too big to display

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