mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 00:40:14 +01:00
14 lines
264 B
JavaScript
14 lines
264 B
JavaScript
|
|
const fs = require('fs');
|
||
|
|
const yaml = require('js-yaml');
|
||
|
|
|
||
|
|
function loadYaml(filepath) {
|
||
|
|
try {
|
||
|
|
let fileContents = fs.readFileSync(filepath, 'utf8');
|
||
|
|
return yaml.load(fileContents);
|
||
|
|
} catch (e) {
|
||
|
|
console.error(e);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = loadYaml;
|