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

should

Package Overview
Dependencies
Maintainers
1
Versions
114
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

should - npm Package Compare versions

Comparing version 0.3.1 to 0.3.2

.gitignore

6

History.md
0.3.2 / 2011-10-24
==================
* Fixed tests for 0.5.x
* Fixed sys warning
0.3.1 / 2011-08-22

@@ -3,0 +9,0 @@ ==================

2

lib/eql.js

@@ -29,3 +29,3 @@

} else if (typeof actual != 'object' && typeof expected != 'object') {
return actual == expected;
return actual === expected;

@@ -32,0 +32,0 @@ // 7.4. For all other Object pairs, including Array objects, equivalence is

@@ -11,3 +11,3 @@ /*!

var util = require('sys')
var util = require('util')
, http = require('http')

@@ -36,3 +36,3 @@ , assert = require('assert')

exports.version = '0.3.1';
exports.version = '0.3.2';

@@ -39,0 +39,0 @@ /**

{ "name": "should"
, "description": "test framework agnostic BDD-style assertions"
, "version": "0.3.1"
, "version": "0.3.2"
, "author": "TJ Holowaychuk <tj@vision-media.ca>"
, "contributors": [ "Aseem Kishore <aseem.kishore@gmail.com>" ]
, "devDependencies": {
"expresso": "0.9.2"
, "should": "*"
}
, "keywords": ["test", "bdd", "assert"]

@@ -7,0 +11,0 @@ , "main": "./lib/should.js"

@@ -6,3 +6,3 @@

var should = require('should');
var should = require('../');
var util = require('util');

@@ -9,0 +9,0 @@

@@ -6,3 +6,3 @@

var should = require('should');
var should = require('../');

@@ -162,3 +162,3 @@ function err(fn, msg) {

(1).should.eql(1);
'4'.should.eql(4);
'4'.should.not.eql(4);

@@ -165,0 +165,0 @@ err(function(){

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