UNPKG

fh-express-stats

Version:

Adds out of the box statistics to a FeedHenry Cloud App

14 lines (10 loc) 271 B
'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;