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

nodeunit

Package Overview
Dependencies
Maintainers
1
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nodeunit - npm Package Compare versions

Comparing version 0.7.1 to 0.7.2

10

lib/assert.js

@@ -163,4 +163,10 @@ /**

var Buffer = null;
if (typeof require !== 'undefined') {
Buffer = require('buffer').Buffer;
if (typeof require !== 'undefined' && typeof process !== 'undefined') {
try {
Buffer = require('buffer').Buffer;
}
catch (e) {
// May be a CommonJS environment other than Node.js
Buffer = null;
}
}

@@ -167,0 +173,0 @@

2

package.json

@@ -46,3 +46,3 @@ { "name": "nodeunit"

]
, "version": "0.7.1"
, "version": "0.7.2"
, "repository" :

@@ -49,0 +49,0 @@ { "type" : "git"

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