このメソッドを含むクラスがあります
/**
* Uses the native RegExp object and the native string.replace to replace text
* @name _replace
* @param {String} find Text string or regex to search for
* @param {String} replace Text string or regex for replacing
* @param {String} string String to perfom the replace on
* @returns {String} Returns the string with the text replaced
*/
this._replace = function(find, replace, str) {
var regex;
if(typeof find !== undefined && replace !== undefined && typeof str === 'string') {
regex = new RegExp(find, this._getFlags());
return str.replace(regex, replace, str);
} else {
return false;
}
};
パブリック インターフェイス用のメソッドと_
区別するために、接頭辞が付けられています。replace
前に があるのに、JSDoc がこのメソッドを文書化しないのはなぜ_
ですか? それを削除すると、完全に文書化されます。この方法で JSDoc ドキュメントを作成するためにできることはありますか?