feature(package) supertape v3.10.0

This commit is contained in:
coderaiser 2020-12-21 15:18:42 +02:00
parent 4d8f489b18
commit b18b6af4dc
30 changed files with 86 additions and 84 deletions

View file

@ -26,10 +26,10 @@ module.exports = callbackify(async (name, rootDir, request) => {
switch(method) {
case 'GET':
return onGET(request, name, rootDir);
return await onGET(request, name, rootDir);
case 'PUT':
return onPUT(request);
return await onPUT(request);
}
});