//═══════════════════════════════════════════════════════//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 Low {10constructor(adapter) {11this.data = null;12if (adapter) {13this.adapter = adapter;14}15else {16throw new MissingAdapterError();17}18}19async read() {20this.data = await this.adapter.read();21}22async write() {23if (this.data) {24await this.adapter.write(this.data);25}26}27}28module.exports = { Low };293031