Merge pull request #274 from yorkie/complete-idempotent-methods

request: complete idempotent methods
This commit is contained in:
TJ Holowaychuk 2014-05-02 12:21:21 -07:00
commit 024b490749
1 changed files with 2 additions and 2 deletions

View File

@ -259,8 +259,8 @@ module.exports = {
*/
get idempotent() {
return 'GET' == this.method
|| 'HEAD' == this.method;
var idempotents = ['GET','HEAD','PUT','DELETE','OPTIONS','TRACE'];
return idempotents.indexOf(this.method) !== -1;
},
/**