-
Notifications
You must be signed in to change notification settings - Fork 15
/
index.js
50 lines (39 loc) · 1.15 KB
/
index.js
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
var fs = require('fs'),
url = require('url'),
path = require('path'),
caller = require('caller'),
strip = require('strip-json-comments');
function tryParse(file, json) {
var err;
try {
return JSON.parse(json);
} catch (e) {
err = new Error(e.message + ' in ' + file);
err.__proto__ = e.__proto__;
throw err;
}
}
function shush(file) {
var root, abs, json, callingFilePath;
callingFilePath = caller();
/**
* When this module is required from esm, then caller()
* returns a path that's prefixed by `file:`.
* We need to remove it to avoid breakage.
*/
if (callingFilePath.startsWith("file:")) {
callingFilePath = url.fileURLToPath(callingFilePath);
}
// on some occasions file is passed in with file prefix
if (file.startsWith("file:")) {
file = url.fileURLToPath(file);
}
root = path.resolve(callingFilePath);
root = path.dirname(root);
abs = path.resolve(root, file);
abs = require.resolve(abs);
json = fs.readFileSync(abs, 'utf8');
json = strip(json, false);
return tryParse(abs, json);
}
module.exports = shush;