UNPKG
fh-express-stats
Version:
latest (0.0.1)
0.0.1
0.0.0
Adds out of the box statistics to a FeedHenry Cloud App
fh-express-stats
/
test
/
req-res-stub.js
14 lines
(10 loc)
•
271 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict'
;
var
util =
require
(
'util'
) , events =
require
(
'events'
);
function
ReqResStub
(
url
) { events.
EventEmitter
.
call
(
this
);
this
.
url
= url;
this
.
baseUrl
= url.
split
(
'/'
)[
1
]; } util.
inherits
(
ReqResStub
, events.
EventEmitter
);
module
.
exports
=
ReqResStub
;