8 lines
169 B
Plaintext
8 lines
169 B
Plaintext
|
function getAriaLabel(index, title, content) {
|
|||
|
return '第' + (index + 1) + '步,' + title + ',' + content;
|
|||
|
}
|
|||
|
|
|||
|
module.exports = {
|
|||
|
getAriaLabel: getAriaLabel,
|
|||
|
};
|