是否有可能,最好在 Sublime Text 或 Webstorm 中输入 JSDoc 样式的注释,如下所示:
/**
* Repeat <tt>str</tt> several times.
* @param {string} str The string to repeat.
* @param {number} times How many times to repeat the string.
* @returns {string}
*/
并生成一个函数定义,如下所示:
function repeat (str, times) {
return
}
?
反之亦然的操作也很好,我只是在寻找一种节省额外击键的方法。