hapi
Version:
HTTP Server framework
26 lines (13 loc) • 402 B
JavaScript
// Load modules
var Cacheable = require('./cacheable');
var Utils = require('../utils');
// Declare internals
var internals = {};
// Empty response (Generic -> Cacheable -> Empty)
exports = module.exports = internals.Empty = function () {
Cacheable.call(this);
this.variety = 'empty';
this.varieties.empty = true;
return this;
};
Utils.inherits(internals.Empty, Cacheable);