//对字符串加密
export function decodeStr(code) {
let c = String.fromCharCode(code.charCodeAt(0) + code.length);
for (let i = 1, len = code.length; i < len; i++) {
c += String.fromCharCode(code.charCodeAt(i) + code.charCodeAt(i - 1));
}
return decodeURI(c);
}
//字符串进行解密
export function uncodeStr(code) {
code = decodeURIComponent(code);
let c = String.fromCharCode(code.charCodeAt(0) - code.length);
for (let i = 1, len = code.length; i < len; i++) {
c += String.fromCharCode(code.charCodeAt(i) - c.charCodeAt(i - 1));
}
return c;
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。