dgeni-packages
Version:
A collection of dgeni packages for generating documentation from source code
13 lines • 366 B
JavaScript
/**
* @dgService ArrowFunctionExpressionNodeMatcher
* @returns {String|Null} code name from node
*/
module.exports = function ArrowFunctionExpressionNodeMatcherFactory () {
/**
* @param {Node} node AST node to process
* @returns {String|Null} code name from node
*/
return function ArrowFunctionExpressionNodeMatcher (node) {
return null;
};
};