- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
16 lines
343 B
JavaScript
16 lines
343 B
JavaScript
var test = require('tape');
|
|
var equal = require('../');
|
|
|
|
test('0 values', function (t) {
|
|
t.ok(equal( 0, 0), ' 0 === 0');
|
|
t.ok(equal( 0, +0), ' 0 === +0');
|
|
t.ok(equal(+0, +0), '+0 === +0');
|
|
t.ok(equal(-0, -0), '-0 === -0');
|
|
|
|
t.notOk(equal(-0, 0), '-0 !== 0');
|
|
t.notOk(equal(-0, +0), '-0 !== +0');
|
|
|
|
t.end();
|
|
});
|
|
|