context: delegate etag/last-modified

master
Jonathan Ong 2014-06-05 16:19:29 -07:00
parent 851160e0ae
commit 01dd6a33c5
2 changed files with 14 additions and 3 deletions

View File

@ -139,10 +139,10 @@ delegate(proto, 'response')
.access('body') .access('body')
.access('length') .access('length')
.access('type') .access('type')
.access('lastModified')
.access('etag')
.getter('headerSent') .getter('headerSent')
.getter('writable') .getter('writable');
.setter('lastModified')
.setter('etag');
/** /**
* Request delegation. * Request delegation.

View File

@ -321,6 +321,17 @@ module.exports = {
this.set('ETag', val); this.set('ETag', val);
}, },
/**
* Get the ETag of a response.
*
* @return {String}
* @api public
*/
get etag() {
return this.get('ETag');
},
/** /**
* Return the request mime type void of * Return the request mime type void of
* parameters such as "charset". * parameters such as "charset".