1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
| //
| 'use strict';
|
| const parseJson = require('parse-json');
| const yaml = require('js-yaml');
| const importFresh = require('import-fresh');
|
| function loadJs(filepath ) {
| const result = importFresh(filepath);
| return result;
| }
|
| function loadJson(filepath , content ) {
| try {
| return parseJson(content);
| } catch (err) {
| err.message = `JSON Error in ${filepath}:\n${err.message}`;
| throw err;
| }
| }
|
| function loadYaml(filepath , content ) {
| return yaml.safeLoad(content, { filename: filepath });
| }
|
| module.exports = {
| loadJs,
| loadJson,
| loadYaml,
| };
|
|