Files
directus-extension-external…/src/external-jwt/require-yaml.ts
2023-07-31 02:55:15 +02:00

7 lines
231 B
TypeScript

import fse from 'fs-extra';
import yaml from 'js-yaml';
export function requireYAML(filepath: string): Record<string, any> {
const yamlRaw = fse.readFileSync(filepath, 'utf8');
return yaml.load(yamlRaw) as Record<string, any>;
}