UNPKG

@agds/cli-plugin-doc

Version:

agds系统doc文档生成器

12 lines (11 loc) 264 B
"use strict"; /* * @Author: 锦阳 * @Create: 2021年10月12日 */ const regex = /\{\s*(\([^\s]*\)\s*=>[^\s]*)\s*\}(\s+([^\s]*))?/g; exports.handlers = { jsdocCommentFound: e => { e.comment = (e.comment || '').replace(regex, '{function} $2 `$1`'); } };