format: prettify entire project
This commit is contained in:
11
node_modules/methods/index.js
generated
vendored
11
node_modules/methods/index.js
generated
vendored
@ -27,9 +27,12 @@ module.exports = getCurrentNodeMethods() || getBasicNodeMethods();
|
||||
*/
|
||||
|
||||
function getCurrentNodeMethods() {
|
||||
return http.METHODS && http.METHODS.map(function lowerCaseMethod(method) {
|
||||
return method.toLowerCase();
|
||||
});
|
||||
return (
|
||||
http.METHODS &&
|
||||
http.METHODS.map(function lowerCaseMethod(method) {
|
||||
return method.toLowerCase();
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -64,6 +67,6 @@ function getBasicNodeMethods() {
|
||||
'unsubscribe',
|
||||
'patch',
|
||||
'search',
|
||||
'connect'
|
||||
'connect',
|
||||
];
|
||||
}
|
||||
|
Reference in New Issue
Block a user