Skip to content

Instantly share code, notes, and snippets.

@valyrie97
Last active February 23, 2018 22:41
Show Gist options
  • Save valyrie97/29fc49dbb52c5a651e1cff4378813a6e to your computer and use it in GitHub Desktop.
Save valyrie97/29fc49dbb52c5a651e1cff4378813a6e to your computer and use it in GitHub Desktop.
doxdox async test
class A {
/**
* does foo
*/
foo() {}
/**
* does bar
*/
async bar() {}
}
/**
* does baz synchronously
*/
A.prototype.baz = function() {
};
/**
* does baz async
*/
A.prototype.abaz = async function() {
};
{
"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