initial commit - far from runnable
This commit is contained in:
commit
db057ce342
8614 changed files with 1032171 additions and 0 deletions
13
node_modules/jsonwebtoken/lib/NotBeforeError.js
generated
vendored
Normal file
13
node_modules/jsonwebtoken/lib/NotBeforeError.js
generated
vendored
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
var JsonWebTokenError = require('./JsonWebTokenError');
|
||||
|
||||
var NotBeforeError = function (message, date) {
|
||||
JsonWebTokenError.call(this, message);
|
||||
this.name = 'NotBeforeError';
|
||||
this.date = date;
|
||||
};
|
||||
|
||||
NotBeforeError.prototype = Object.create(JsonWebTokenError.prototype);
|
||||
|
||||
NotBeforeError.prototype.constructor = NotBeforeError;
|
||||
|
||||
module.exports = NotBeforeError;
|
||||
Loading…
Add table
Add a link
Reference in a new issue