Skip to content

Base64 编码解码

实现原理

js
const b64Encode = () => {
    text.value = btoa(text.value)
}
const b64Decode = () => {
    text.value = atob(text.value)
    unzip()
}
const clean = () => {
    text.value = ''
}

© thebestxt.cc
辽ICP备16009524号-8
本站所有文章版权所有,转载请注明出处