chat / api /lib /utils /misc.js
helloya20's picture
Upload 2345 files
f0743f4 verified
Raw
History Blame Contribute Delete
163 Bytes
const cleanUpPrimaryKeyValue = (value) => {
// For Bing convoId handling
return value.replace(/--/g, '|');
};
module.exports = {
cleanUpPrimaryKeyValue,
};