Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

files of /cody/lassiecoder/mutual-funding-app/server/node_modules/jsonwebtoken/

CHANGELOG.md /cody/lassiecoder/mutual-funding-app/server/node_modules/jsonwebtoken/CHANGELOG.md
32 Views
0 Comments
# Change Log


All notable changes to this project will be documented in this file starting from version **v4.0.0**.
This projec
LICENSE /cody/lassiecoder/mutual-funding-app/server/node_modules/jsonwebtoken/LICENSE
20 Views
0 Comments
The MIT License (MIT)

Copyright (c) 2015 Auth0, Inc. <support@auth0.com> (http://auth0.com)

Permission is hereby granted, fr
README.md /cody/lassiecoder/mutual-funding-app/server/node_modules/jsonwebtoken/README.md
31 Views
0 Comments
# jsonwebtoken

| **Build** | **Dependency** |
|-----------|---------------|
| [![Build Status](https://secure.travis-ci.org/aut
decode.js /cody/lassiecoder/mutual-funding-app/server/node_modules/jsonwebtoken/decode.js
5 Views
0 Comments
var jws = require('jws');

module.exports = function (jwt, options) {
options = options || {};
var decoded = jws.decode(jwt,
index.js /cody/lassiecoder/mutual-funding-app/server/node_modules/jsonwebtoken/index.js
5 Views
0 Comments
module.exports = {
decode: require('./decode'),
verify: require('./verify'),
sign: require('./sign'),
JsonWebTokenError:
lib /cody/lassiecoder/mutual-funding-app/server/node_modules/jsonwebtoken/lib/
5 Items
  • JsonWebTokenError.js
  • NotBeforeError.js
  • TokenExpiredError.js
  • psSupported.js
  • timespan.js
  • node_modules /cody/lassiecoder/mutual-funding-app/server/node_modules/jsonwebtoken/node_modules/
    2 Items
  • .bin
  • ms
  • package.json /cody/lassiecoder/mutual-funding-app/server/node_modules/jsonwebtoken/package.json
    14 Views
    0 Comments
    {
    "name": "jsonwebtoken",
    "version": "8.5.1",
    "description": "JSON Web Token implementation (symmetric and asymmetric)",

    sign.js /cody/lassiecoder/mutual-funding-app/server/node_modules/jsonwebtoken/sign.js
    5 Views
    0 Comments
    var timespan = require('./lib/timespan');
    var PS_SUPPORTED = require('./lib/psSupported');
    var jws = require('jws');
    var include
    verify.js /cody/lassiecoder/mutual-funding-app/server/node_modules/jsonwebtoken/verify.js
    8 Views
    0 Comments
    var JsonWebTokenError = require('./lib/JsonWebTokenError');
    var NotBeforeError = require('./lib/NotBeforeError');
    var TokenEx