Add missing semicolon

master
Sven Slootweg 8 years ago
parent a812c8ae94
commit 4d42cb07a0

@ -3,5 +3,5 @@
module.exports = function promiseTry(func) { module.exports = function promiseTry(func) {
return new Promise(function(resolve, reject) { return new Promise(function(resolve, reject) {
resolve(func()); resolve(func());
}) });
} }
Loading…
Cancel
Save