Skip to content

Commit

Permalink
更新解码方法
Browse files Browse the repository at this point in the history
  • Loading branch information
xcanwin committed Aug 3, 2024
1 parent d01f432 commit 54162a4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
- 此时后面的正文可正常阅读

```
e=p=>p.nodeType==3?p.data=p.data.split('').reverse
().join(''):p.childNodes.forEach(c=>e(c)),e(readme)
e=p=>p.nodeType==3?p.data=p.data.split('').reverse().join(''):p.childNodes
.forEach(c=>e(c)),e(document.querySelector('.repository-content'))
```

Expand Down
4 changes: 2 additions & 2 deletions README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
- At this time, the following text can be read normally

```
e=p=>p.nodeType==3?p.data=p.data.split('').reverse
().join(''):p.childNodes.forEach(c=>e(c)),e(readme)
e=p=>p.nodeType==3?p.data=p.data.split('').reverse().join(''):p.childNodes
.forEach(c=>e(c)),e(document.querySelector('.repository-content'))
```

Expand Down

0 comments on commit 54162a4

Please sign in to comment.