Compare commits

..

No commits in common. "647dc9a2ec9fce5ddfe93b4dc90e2a0e1538e1fa" and "3e412d509062fb39d6aa5fb2903125353b3bab64" have entirely different histories.

3 changed files with 69 additions and 71 deletions

13
dist/index.d.ts vendored
View File

@ -45,7 +45,18 @@ export default class Config {
set(key: string, value: any): void;
has(key: string): boolean;
get(key: string, fallback?: any): any;
typeOf(key: string): "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function" | "null";
typeOf(
key: string
):
| "string"
| "number"
| "bigint"
| "boolean"
| "symbol"
| "undefined"
| "object"
| "function"
| "null";
str(key: string, fallback?: any): any;
int(key: any, fallback?: any): any;
uint(key: any, fallback?: any): any;

3
dist/index.js vendored
View File

@ -135,9 +135,6 @@ class Config {
(0, bsert_1.default)(typeof data === "object");
(0, bsert_1.default)(!Array.isArray(data));
const fullPath = path_1.default.join(this.str("configdir"), file);
if (!fs_1.default.existsSync(fullPath)) {
fs_1.default.mkdirSync(fullPath, { recursive: true });
}
fs_1.default.writeFileSync(fullPath, JSON.stringify(data));
this.openJson(fullPath);
}

View File

@ -80,7 +80,6 @@ export default class Config {
}
}
}
public inject(options: object) {
for (const key of Object.keys(options)) {
const value = options[key];
@ -175,10 +174,6 @@ export default class Config {
const fullPath = Path.join(this.str("configdir"), file);
if (!fs.existsSync(fullPath)) {
fs.mkdirSync(fullPath, { recursive: true });
}
fs.writeFileSync(fullPath, JSON.stringify(data));
this.openJson(fullPath);
}
@ -322,7 +317,6 @@ export default class Config {
return value;
}
int(key, fallback = null) {
const value = this.get(key);
@ -404,7 +398,6 @@ export default class Config {
return num;
}
ufloat(key, fallback = null) {
const value = this.float(key);
if (value === null) {
@ -431,7 +424,6 @@ export default class Config {
throw new Error(`${fmt(key)} must be a fixed number.`);
}
}
ufixed(key, exp, fallback = null) {
const value = this.fixed(key, exp);
@ -481,7 +473,6 @@ export default class Config {
throw new Error(`${fmt(key)} must be a boolean.`);
}
buf(key: string, fallback = null, enc: BufferEncoding = "hex") {
const value = this.get(key);
@ -884,7 +875,6 @@ export default class Config {
return this.parseForm(query, "?", this.query);
}
public parseHash(hash: string) {
if (typeof hash !== "string") {
if (!global.location) {