- 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
12 lines
207 B
JavaScript
12 lines
207 B
JavaScript
var equal = require('../');
|
|
console.dir([
|
|
equal(
|
|
{ a : [ 2, 3 ], b : [ 4 ] },
|
|
{ a : [ 2, 3 ], b : [ 4 ] }
|
|
),
|
|
equal(
|
|
{ x : 5, y : [6] },
|
|
{ x : 5, y : 6 }
|
|
)
|
|
]);
|