1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

12 lines
254 B
XML

var getNotes = function (storeInfoList, storeIndex) {
if (!storeInfoList) {
return '';
}
var storeInfo = storeInfoList[storeIndex];
if (!storeInfo) {
return '';
}
return storeInfoList[storeIndex].remark;
};
module.exports = getNotes;