format: prettify entire project

This commit is contained in:
Rim
2025-04-02 06:50:39 -04:00
parent 86f0782a98
commit 7ccc0be712
1711 changed files with 755867 additions and 235931 deletions

11
node_modules/methods/index.js generated vendored
View File

@ -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',
];
}