Skip to content

Instantly share code, notes, and snippets.

View larts85's full-sized avatar
🧠
Creating neural connexions 🤯

Lianel Artiles Sotolongo larts85

🧠
Creating neural connexions 🤯
View GitHub Profile
@Klerith
Klerith / plugins.md
Last active August 21, 2024 13:56
Lista de plugins que uso en VSC
@Klerith
Klerith / parse-jwt.js
Created March 15, 2018 15:07
Parse - JWT - Obtener Payload y fecha de creación y expiración
function parseJwt (token) {
var base64Url = token.split('.')[1];
var base64 = base64Url.replace('-', '+').replace('_', '/');
return JSON.parse(window.atob(base64));
};