ph-utils 0.5.0 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
package/lib/file.d.ts CHANGED
@@ -1,14 +1,14 @@
1
1
  /**
2
2
  * 读取文件内容为JSON格式
3
3
  * @param filepath 读取的文件路径
4
- * @param errIsNull 读取失败时,是否返回 null,默认为 false[抛出异常]
4
+ * @param defaultValue 读取失败时,提供默认值, 如果不提供传参数则[抛出异常]
5
5
  *
6
- * @example <caption>1. 文件不存在时, 返回null,而不是 catch</caption>
6
+ * @example <caption>1. 文件不存在时, 默认为: null</caption>
7
7
  * await readJSON("./not-exists.json", true);
8
8
  *
9
9
  * @returns Promise<unknown>
10
10
  */
11
- export declare function readJSON<T>(filepath: string, errIsNull?: boolean): Promise<T>;
11
+ export declare function readJSON<T>(filepath: string, defaultValue?: T): Promise<T>;
12
12
  /**
13
13
  * 写入 JSON 格式的数据到文件
14
14
  * @param file 待写入的文件
package/lib/file.js CHANGED
@@ -4,19 +4,19 @@ import fs from "node:fs";
4
4
  /**
5
5
  * 读取文件内容为JSON格式
6
6
  * @param filepath 读取的文件路径
7
- * @param errIsNull 读取失败时,是否返回 null,默认为 false[抛出异常]
7
+ * @param defaultValue 读取失败时,提供默认值, 如果不提供传参数则[抛出异常]
8
8
  *
9
- * @example <caption>1. 文件不存在时, 返回null,而不是 catch</caption>
9
+ * @example <caption>1. 文件不存在时, 默认为: null</caption>
10
10
  * await readJSON("./not-exists.json", true);
11
11
  *
12
12
  * @returns Promise<unknown>
13
13
  */
14
- export function readJSON(filepath, errIsNull = false) {
14
+ export function readJSON(filepath, defaultValue) {
15
15
  return new Promise((resolve, reject) => {
16
16
  fs.readFile(path.resolve(filepath), "utf-8", (err, data) => {
17
17
  if (err) {
18
- if (errIsNull) {
19
- resolve(null);
18
+ if (defaultValue !== undefined) {
19
+ resolve(defaultValue);
20
20
  }
21
21
  else {
22
22
  reject(err);
package/package.json CHANGED
@@ -52,7 +52,7 @@
52
52
  },
53
53
  "./*": "./lib/*"
54
54
  },
55
- "version": "0.5.0",
55
+ "version": "0.5.1",
56
56
  "type": "module",
57
57
  "repository": {
58
58
  "type": "git",