12 lines
254 B
XML
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;
|