Merge pull request #292 from koajs/context-delegate

context: delegate etag/last-modified
This commit is contained in:
Jonathan Ong 2014-06-07 03:39:19 -07:00
commit dc59a604e5
2 changed files with 14 additions and 3 deletions

View File

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

View File

@ -322,6 +322,17 @@ module.exports = {
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
* parameters such as "charset".