Skip to content

Commit

Permalink
Remove spaces around | to be more consistent with surrounding code.
Browse files Browse the repository at this point in the history
  • Loading branch information
jyasskin committed Dec 9, 2022
1 parent 51969e3 commit dad3b5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var crypto = require('crypto');
* Sign the given `val` with `secret`.
*
* @param {String} val
* @param {String | NodeJS.ArrayBufferView | crypto.KeyObject} secret
* @param {String|NodeJS.ArrayBufferView|crypto.KeyObject} secret
* @return {String}
* @api private
*/
Expand All @@ -28,7 +28,7 @@ exports.sign = function(val, secret){
* returning `false` if the signature is invalid.
*
* @param {String} input
* @param {String | NodeJS.ArrayBufferView | crypto.KeyObject} secret
* @param {String|NodeJS.ArrayBufferView|crypto.KeyObject} secret
* @return {String|Boolean}
* @api private
*/
Expand Down

0 comments on commit dad3b5c

Please sign in to comment.