Skip to content

Commit

Permalink
style: add missing semicolon (#641)
Browse files Browse the repository at this point in the history
  • Loading branch information
pedroprado010 authored and panva committed Oct 21, 2019
1 parent a9e38b8 commit 9fb90ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sign.js
Expand Up @@ -9,7 +9,7 @@ var isPlainObject = require('lodash.isplainobject');
var isString = require('lodash.isstring');
var once = require('lodash.once');

var SUPPORTED_ALGS = ['RS256', 'RS384', 'RS512', 'ES256', 'ES384', 'ES512', 'HS256', 'HS384', 'HS512', 'none']
var SUPPORTED_ALGS = ['RS256', 'RS384', 'RS512', 'ES256', 'ES384', 'ES512', 'HS256', 'HS384', 'HS512', 'none'];
if (PS_SUPPORTED) {
SUPPORTED_ALGS.splice(3, 0, 'PS256', 'PS384', 'PS512');
}
Expand Down

0 comments on commit 9fb90ca

Please sign in to comment.