12 lines
254 B
Plaintext
12 lines
254 B
Plaintext
|
var getNotes = function (storeInfoList, storeIndex) {
|
||
|
if (!storeInfoList) {
|
||
|
return '';
|
||
|
}
|
||
|
var storeInfo = storeInfoList[storeIndex];
|
||
|
if (!storeInfo) {
|
||
|
return '';
|
||
|
}
|
||
|
return storeInfoList[storeIndex].remark;
|
||
|
};
|
||
|
module.exports = getNotes;
|