Skip to content

Commit

Permalink
Add patch method
Browse files Browse the repository at this point in the history
  • Loading branch information
bencevans committed Jan 28, 2014
1 parent 1577e34 commit 864c7f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/connect-route.js
Original file line number Original file line Diff line number Diff line change
@@ -1,7 +1,7 @@
(function () { (function () {
'use strict'; 'use strict';
var var
methods = [ 'get', 'post', 'put', 'delete', 'connect', 'options', 'trace', 'copy', 'lock', 'mkcol', 'move', 'propfind', 'proppatch', 'unlock', 'report', 'mkactivity', 'checkout', 'merge' ], methods = [ 'get', 'post', 'put', 'patch', 'delete', 'connect', 'options', 'trace', 'copy', 'lock', 'mkcol', 'move', 'propfind', 'proppatch', 'unlock', 'report', 'mkactivity', 'checkout', 'merge' ],
separator = /^[\s\/]+|[\s\/]+$/g, separator = /^[\s\/]+|[\s\/]+$/g,
i, length, i, length,


Expand Down Expand Up @@ -111,4 +111,4 @@
} }
}; };
}; };
}()); }());

0 comments on commit 864c7f8

Please sign in to comment.