mirror of
https://github.com/joelwmale/webhook-action.git
synced 2025-01-31 09:06:44 +01:00
1ada95e04a
- Convert project to Javascript/Typescript - Allow custom headers to be passed in (optional) - Allow body to be optional
11 lines
207 B
JavaScript
11 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 }
|
|
)
|
|
]);
|