mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-19 01:40:15 +01:00
8 lines
160 B
JavaScript
8 lines
160 B
JavaScript
|
|
const cleanUpPrimaryKeyValue = (value) => {
|
||
|
|
// For Bing convoId handling
|
||
|
|
return value.replace(/--/g, '-');
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
cleanUpPrimaryKeyValue,
|
||
|
|
}
|