See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| <!DOCTYPE html> | |
| <html> | |
| <body> | |
| <script> | |
| const dbReq = indexedDB.open('opentutorials',1); | |
| let db; | |
| dbReq.addEventListener('success', function(event){ | |
| db = event.target.result; | |
| }); | |
| dbReq.addEventListener('error', function(event){ |
| . |
| . |
| public gist |