//═══════════════════════════════════════════════════════//1//If you want to recode, reupload2//or copy the codes/script,3//pls give credit4//no credit? i will take action immediately5//© 2022 Xeon Bot Inc. Cheems Bot MD6//Thank you to Lord Buddha, Family and Myself7//════════════════════════════//8const { MissingAdapterError } = require('./MissingAdapterError.js');9class LowSync {10constructor(adapter) {11this.data = null;12if (adapter) {13this.adapter = adapter;14}15else {16throw new MissingAdapterError();17}18}19read() {20this.data = this.adapter.read();21}22write() {23if (this.data !== null) {24this.adapter.write(this.data);25}26}27}28module.exports = { LowSync };293031