UNPKG
nisemono
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
Pretty simple test double library
github.com/kumabook/nisemono
kumabook/nisemono
nisemono
/
src
/
call.js
10 lines
(8 loc)
•
141 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
/** * @class */
var
Call = function(
params
) {
this
.
args
=
params
.
args
;
this
.calledAt =
params
.calledAt; }; module.exports = Call;