8 lines
169 B
Plaintext
Raw Permalink Normal View History

2025-04-28 09:21:04 +08:00
function getAriaLabel(index, title, content) {
return '第' + (index + 1) + '步,' + title + '' + content;
}
module.exports = {
getAriaLabel: getAriaLabel,
};