UNPKG

gogo-dl

Version:

<h1 align="center">gogo-dl</h1> <p align="center"> <b> Powerful, lightweight, user-friendly tool for downloading anime.</b> </p>

56 lines (55 loc) 1.95 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; Object.defineProperty(exports, "__esModule", { value: true }); var fs = __importStar(require("fs")); var ConfigFile = /** @class */ (function () { function ConfigFile(path) { this.path = path; var raw = fs.readFileSync(path, 'utf8'); if (raw.trim().length === 0) { this.data = JSON.parse('{}'); } else { try { this.data = JSON.parse(raw); } catch (e) { this.data = JSON.parse('{}'); } } } ConfigFile.prototype.set = function (key, value) { this.data[key] = value; fs.writeFileSync(this.path, JSON.stringify(this.data)); }; ConfigFile.prototype.get = function (key) { if (key in this.data) return this.data[key]; else return undefined; }; ConfigFile.prototype.clear = function () { this.data = JSON.parse('{}'); fs.writeFileSync(this.path, JSON.stringify(this.data)); }; return ConfigFile; }()); exports.default = ConfigFile;