File size: 235 Bytes
f0743f4
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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;
  }
}