Husky commit correct node modules

This commit is contained in:
stCarolas
2019-12-07 16:09:20 +03:00
parent c66179d93e
commit 10de3d4c54
607 changed files with 136508 additions and 0 deletions

15
node_modules/p-finally/index.js generated vendored Normal file
View File

@@ -0,0 +1,15 @@
'use strict';
module.exports = (promise, onFinally) => {
onFinally = onFinally || (() => {});
return promise.then(
val => new Promise(resolve => {
resolve(onFinally());
}).then(() => val),
err => new Promise(resolve => {
resolve(onFinally());
}).then(() => {
throw err;
})
);
};