mirror of
https://github.com/actions/setup-python.git
synced 2025-06-13 07:47:12 +02:00
Initial pass
This commit is contained in:
11
node_modules/deep-is/example/cmp.js
generated
vendored
Normal file
11
node_modules/deep-is/example/cmp.js
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
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 }
|
||||
)
|
||||
]);
|
Reference in New Issue
Block a user