mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
8 lines
244 B
JavaScript
8 lines
244 B
JavaScript
import jwt_decode from "jwt-decode";
|
|
import $ from "jquery"
|
|
|
|
$.post(loginUrl(), {data: "foo"}, (data, xhr) => {
|
|
var decoded = jwt_decode(data);
|
|
$.jGrowl(decoded); // NOT OK - but only flagged with additional sources [INCONSISTENCY]
|
|
});
|