UNPKG

allex_webserverservice

Version:
15 lines (12 loc) 404 B
function createServiceSink(execlib, ParentSink) { 'use strict'; function ServiceSink(prophash, client) { ParentSink.call(this, prophash, client); } ParentSink.inherit(ServiceSink, require('../methoddescriptors/serviceuser')); ServiceSink.prototype.__cleanUp = function () { ParentSink.prototype.__cleanUp.call(this); }; return ServiceSink; } module.exports = createServiceSink;