File size: 163 Bytes
f0743f4
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
const cleanUpPrimaryKeyValue = (value) => {
  // For Bing convoId handling
  return value.replace(/--/g, '|');
};

module.exports = {
  cleanUpPrimaryKeyValue,
};