mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 17:00:15 +01:00
12 lines
235 B
TypeScript
12 lines
235 B
TypeScript
|
|
import fs from 'fs';
|
||
|
|
import yaml from 'js-yaml';
|
||
|
|
|
||
|
|
export function loadYaml(filepath: string) {
|
||
|
|
try {
|
||
|
|
const fileContents = fs.readFileSync(filepath, 'utf8');
|
||
|
|
return yaml.load(fileContents);
|
||
|
|
} catch (e) {
|
||
|
|
return e;
|
||
|
|
}
|
||
|
|
}
|