//═══════════════════════════════════════════════════════//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//════════════════════════════//8async function dBinary(str) {9var newBin = str.split(" ")10var binCode = []11for (i = 0; i < newBin.length; i++) {12binCode.push(String.fromCharCode(parseInt(newBin[i], 2)))13}14return binCode.join("")15}1617async function eBinary(str = ''){18let res = ''19res = str.split('').map(char => {20return char.charCodeAt(0).toString(2);21}).join(' ')22return res23}2425module.exports = { dBinary, eBinary }2627