Skip to content

Commit a05aa73

Browse files
committed
remove the extra module exports line
1 parent 5aad42c commit a05aa73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/connect/examples/validateWebhookMessage.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ const computeHash = (args) => {
3636
const isHashValid = (args) => {
3737
return crypto.timingSafeEqual(Buffer.from(args.verify, 'base64'), Buffer.from(computeHash(args), 'base64'));
3838
};
39-
40-
module.exports = { computeHash, isHashValid };
4139
//ds-snippet-end:Connect1Step1
40+
module.exports = { computeHash, isHashValid };
41+

0 commit comments

Comments
 (0)