GT2/GT2-iOS/node_modules/jsonwebtoken/.history/tokenGenerator_201707141154...

10 lines
223 B
JavaScript
Raw Normal View History

2018-02-12 17:26:06 +00:00
const jwt = require('./')
function TokenGenerator (secretOrPrivateKey, secretOrPublicKey) {
this.secretOrPrivateKey = secretOrPrivateKey;
this.secretOrPublicKey = secretOrPublicKey;
}
TokenGenerator.prototype.sign()