UNPKG
authen
Version:
latest (0.0.2)
0.0.2
0.0.1
Authentication tools - signing, tokens, password hashes
dimsmol/authen
authen
/
lib
/
auth_problem.js
13 lines
(8 loc)
•
209 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
"use strict"
;
var
mt =
require
(
'marked_types'
);
var
AuthProblem
=
function
(
code, data
) {
this
.
code
= code;
this
.
data
= data; }; mt.
mark
(
AuthProblem
,
'authen:AuthProblem'
);
module
.
exports
=
AuthProblem
;