Skip to content

Commit 7508e89

Browse files
chmelevskijziluvatar
authored andcommitted
Remove lodash.isarray dependency (#394)
1 parent f313850 commit 7508e89

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
"dependencies": {
2222
"jws": "^3.1.4",
2323
"lodash.includes": "^4.3.0",
24-
"lodash.isarray": "^4.0.0",
2524
"lodash.isboolean": "^3.0.3",
2625
"lodash.isinteger": "^4.0.4",
2726
"lodash.isnumber": "^3.0.3",

sign.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ var timespan = require('./lib/timespan');
22
var xtend = require('xtend');
33
var jws = require('jws');
44
var includes = require('lodash.includes');
5-
var isArray = require('lodash.isarray');
65
var isBoolean = require('lodash.isboolean');
76
var isInteger = require('lodash.isinteger');
87
var isNumber = require('lodash.isnumber');
@@ -13,7 +12,7 @@ var once = require('lodash.once');
1312
var sign_options_schema = {
1413
expiresIn: { isValid: function(value) { return isInteger(value) || isString(value); }, message: '"expiresIn" should be a number of seconds or string representing a timespan' },
1514
notBefore: { isValid: function(value) { return isInteger(value) || isString(value); }, message: '"notBefore" should be a number of seconds or string representing a timespan' },
16-
audience: { isValid: function(value) { return isString(value) || isArray(value); }, message: '"audience" must be a string or array' },
15+
audience: { isValid: function(value) { return isString(value) || Array.isArray(value); }, message: '"audience" must be a string or array' },
1716
algorithm: { isValid: includes.bind(null, ['RS256', 'RS384', 'RS512', 'ES256', 'ES384', 'ES512', 'HS256', 'HS384', 'HS512', 'none']), message: '"algorithm" must be a valid string enum value' },
1817
header: { isValid: isPlainObject, message: '"header" must be an object' },
1918
encoding: { isValid: isString, message: '"encoding" must be a string' },

0 commit comments

Comments
 (0)