У меня есть этот код
/** This is test function
* @param {} param1 this is param 1
* @param {} param2 this is param 2
*/
function test(param1, param2) {
}
И я ищу способ получить описание этого документа в формате код .
Например
function getMethodJsDocData(){
// The magic happens here and returns some data that contains:
/** This is test function
* @param {} param1 this is param 1
* @param {} param2 this is param 2
*/
}