Sha256: 2e917ec9dac54b135c1ea076b02f71abd3ae2f124ca8b6d0adab713716d4c806
Contents?: true
Size: 549 Bytes
Versions: 17
Compression:
Stored size: 549 Bytes
Contents
var http = require('http'); if (http.METHODS) { module.exports = http.METHODS.map(function(method){ return method.toLowerCase(); }); } else { module.exports = [ 'get', 'post', 'put', 'head', 'delete', 'options', 'trace', 'copy', 'lock', 'mkcol', 'move', 'purge', 'propfind', 'proppatch', 'unlock', 'report', 'mkactivity', 'checkout', 'merge', 'm-search', 'notify', 'subscribe', 'unsubscribe', 'patch', 'search', 'connect' ]; }
Version data entries
17 entries across 17 versions & 2 rubygems