-
-
Save valyrie97/29fc49dbb52c5a651e1cff4378813a6e to your computer and use it in GitHub Desktop.
doxdox async test
This file contains 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
class A { | |
/** | |
* does foo | |
*/ | |
foo() {} | |
/** | |
* does bar | |
*/ | |
async bar() {} | |
} | |
/** | |
* does baz synchronously | |
*/ | |
A.prototype.baz = function() { | |
}; | |
/** | |
* does baz async | |
*/ | |
A.prototype.abaz = async function() { | |
}; |
This file contains 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
{ | |
"name": "marcus", | |
"version": "1.0.0", | |
"description": "a Thing", | |
"main": "A.js", | |
"directories": { | |
"test": "test" | |
}, | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"author": "", | |
"license": "ISC" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment