/**
* @param: 2 - Database name, version
* @returns: Constructor function
* @description: Opening a Database
*/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Anthony Alvarez</title> | |
| </head> | |
| <body> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Local files | |
| ################### | |
| # package-lock.json | |
| # ignore all files in the build/ directory | |
| # Dependency directories | |
| ################### | |
| node_modules/ | |
| # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Source https://help.github.com/articles/about-codeowners/ | |
| # This is a comment. | |
| # Each line is a file pattern followed by one or more owners. | |
| # These owners will be the default owners for everything in | |
| # the repo. Unless a later match takes precedence, | |
| # @global-owner1 and @global-owner2 will be requested for | |
| # review when someone opens a pull request. | |
| * @global-owner1 @global-owner2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # https://www.mking.net/blog/using-vscode-as-the-default-git-editor | |
| git config --global core.editor "code --new-window --wait" | |
| git config --global core.editor "code --wait" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| type: subject | |
| body | |
| footer | |
| # ========= INSTRUCTIONS FOR USE ============4950 | |
| # | |
| # The Type | |
| # The type is contained within the title |
The core idea behind promises is that a promise represents the result of an asynchronous operation. A promise is in one of three different states:
• pending - The initial state of a promise.
• fulfilled - The state of a promise representing a successful operation.
• rejected - The state of a promise representing a failed operation.
OlderNewer