mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-27 05:38:51 +01:00
fix: fix files to adhere to standard conventions
This commit is contained in:
parent
9b04ffabca
commit
ff757f27cf
7 changed files with 11 additions and 9 deletions
|
|
@ -353,4 +353,4 @@ const langSubset = [
|
|||
'yaml',
|
||||
];
|
||||
|
||||
module.exports = { languages, langSubset };
|
||||
export { languages, langSubset };
|
||||
|
|
@ -211,8 +211,9 @@ var SSE = function (url, options) {
|
|||
};
|
||||
};
|
||||
|
||||
export { SSE };
|
||||
// Export our SSE module for npm.js
|
||||
if (typeof exports !== 'undefined') {
|
||||
// exports.SSE = SSE;
|
||||
module.exports = { SSE };
|
||||
}
|
||||
// if (typeof exports !== 'undefined') {
|
||||
// // exports.SSE = SSE;
|
||||
// module.exports = { SSE };
|
||||
// }
|
||||
Loading…
Add table
Add a link
Reference in a new issue