Merge "LOG SQL dump files getting installed"
[sdnc/oam.git] / dgbuilder / dgeflows / node_modules / express / node_modules / methods / index.js
1
2 var http = require('http');
3
4 /* istanbul ignore next: implementation differs on version */
5 if (http.METHODS) {
6
7   module.exports = http.METHODS.map(function(method){
8     return method.toLowerCase();
9   });
10
11 } else {
12
13   module.exports = [
14     'get',
15     'post',
16     'put',
17     'head',
18     'delete',
19     'options',
20     'trace',
21     'copy',
22     'lock',
23     'mkcol',
24     'move',
25     'purge',
26     'propfind',
27     'proppatch',
28     'unlock',
29     'report',
30     'mkactivity',
31     'checkout',
32     'merge',
33     'm-search',
34     'notify',
35     'subscribe',
36     'unsubscribe',
37     'patch',
38     'search',
39     'connect'
40   ];
41
42 }