mirror of
https://github.com/documentationjs/documentation.git
synced 2026-01-18 14:17:30 +00:00
cc @killercup this implements default parameter parsing for both flow-annotated and unannotated methods
7 lines
100 B
JavaScript
7 lines
100 B
JavaScript
/**
|
|
* Very Important Transform
|
|
*/
|
|
function veryImportantTransform(foo = 'bar') {
|
|
return "42";
|
|
}
|