5etools-utils 0.1.8 → 0.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/UtilFs.js +6 -4
- package/package.json +1 -1
package/lib/UtilFs.js
CHANGED
|
@@ -4,21 +4,23 @@ function isDirectory (path) {
|
|
|
4
4
|
return fs.lstatSync(path).isDirectory();
|
|
5
5
|
}
|
|
6
6
|
|
|
7
|
-
function readJSON (path) {
|
|
7
|
+
function readJSON (path, {isIncludeRaw = false} = {}) {
|
|
8
8
|
try {
|
|
9
9
|
if (fs.existsSync(path)) {
|
|
10
10
|
let str = fs.readFileSync(path, "utf8");
|
|
11
11
|
// Strip BOM(s)
|
|
12
12
|
while (str.charCodeAt(0) === 0xFEFF) str = str.slice(1);
|
|
13
|
-
|
|
13
|
+
const out = JSON.parse(str);
|
|
14
|
+
if (isIncludeRaw) return {raw: str, json: out};
|
|
15
|
+
return out;
|
|
14
16
|
} else {
|
|
15
17
|
const parts = path.split(/[\\/]+/g);
|
|
16
18
|
const dir = parts.slice(0, -1).join("/");
|
|
17
19
|
const originalName = parts[parts.length - 1];
|
|
18
20
|
const filenames = fs.readdirSync(dir, "utf8");
|
|
19
21
|
const filename = filenames.find(it => it.toLowerCase() === originalName.toLowerCase());
|
|
20
|
-
if (filename)
|
|
21
|
-
|
|
22
|
+
if (!filename) throw new Error(`Could not find file "${path}"`);
|
|
23
|
+
return readJSON(`${dir}/${filename}`, {isIncludeRaw});
|
|
22
24
|
}
|
|
23
25
|
} catch (e) {
|
|
24
26
|
e.message += ` (Path: ${path})`;
|