Skip to content

Commit

Permalink
fix: add missing semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
alx committed Dec 11, 2018
1 parent ec1731e commit b5a5895
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Expand Up @@ -223,7 +223,7 @@ export default class DD {
});
})
.catch(error => {
reject(error)
reject(error);
});
});
};
Expand All @@ -243,7 +243,7 @@ export default class DD {
.catch(err => {
clearTimeout(timer);
reject(err);
})
});

});
}
Expand Down

0 comments on commit b5a5895

Please sign in to comment.