Skip to content
This repository was archived by the owner on Oct 31, 2022. It is now read-only.

Commit 0e9f123

Browse files
Fix formatting
1 parent 5ab9c84 commit 0e9f123

File tree

1 file changed

+16
-12
lines changed

1 file changed

+16
-12
lines changed

README.md

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,25 @@ Conceal your logic and hide any data contained in the code. Please read document
88

99
Original code:
1010

11-
(function(){
12-
var variable = 'abc';
13-
console.log(variable);
14-
})();
11+
```js
12+
(function(){
13+
var variable = 'abc';
14+
console.log(variable);
15+
})();
16+
```
1517

1618
Protected code:
1719

18-
var _0xabf1 = [
19-
'\x61\x62\x63',
20-
'\x6c\x6f\x67'
21-
];
22-
(function() {
23-
var _0xe6fab6 = _0xabf1[0x0];
24-
console[_0xabf1[0x1]](_0xe6fab6);
25-
}());
20+
```js
21+
var _0xabf1 = [
22+
'\x61\x62\x63',
23+
'\x6c\x6f\x67'
24+
];
25+
(function() {
26+
var _0xe6fab6 = _0xabf1[0x0];
27+
console[_0xabf1[0x1]](_0xe6fab6);
28+
}());
29+
```
2630

2731

2832

0 commit comments

Comments
 (0)