@use JSDoc

語法

@borrows <that namepath> as <this namepath>

概述

@borrows 標籤允許您將其他符號的說明新增至您的說明中。

如果您有多種方式來參照函式,但不想在兩個地方重複相同的說明,這個標籤會很有用。

範例

在此範例中,存在「trstr」函式的說明,但「util.trim」只是一個使用不同名稱來參照相同函式的參考。

將 trstr 的說明複製為 util.trim
/**
 * @namespace
 * @borrows trstr as trim
 */
var util = {
    trim: trstr
};

/**
 * Remove whitespace from around a string.
 * @param {string} str
 */
function trstr(str) {
}