mirror of
https://git.mirrors.martin98.com/https://github.com/cilame/v_jstools
synced 2025-08-15 15:36:02 +08:00
add
This commit is contained in:
parent
973de339e4
commit
7d94b06e03
@ -141,8 +141,9 @@
|
||||
<button id='obnormal'>普通解混淆</button>
|
||||
<button id='ob'>解密ob高级混淆</button>
|
||||
<button id='jsfuck'>解密jsfuck混淆</button>
|
||||
<button id='uglify'>仅变量压缩</button>
|
||||
<button id='uglify_mini'>完全压缩脚本</button>
|
||||
<button id='babel_aline'>将代码变成一行[babel]</button>
|
||||
<button id='uglify'>仅变量压缩[uglify-es]</button>
|
||||
<button id='uglify_mini'>完全压缩脚本[uglify-es]</button>
|
||||
<label id='env' style="color: #FFEEEE">cilame</label>
|
||||
<br/>
|
||||
<label>source</label>
|
||||
|
32268
tools/babel_asttool.js
32268
tools/babel_asttool.js
File diff suppressed because one or more lines are too long
@ -3,11 +3,20 @@ var sojsontn = document.getElementById('sojson')
|
||||
var obtn = document.getElementById('ob')
|
||||
var jsfuckbtn = document.getElementById('jsfuck')
|
||||
var obnormalbtn = document.getElementById('obnormal')
|
||||
var babel_aline = document.getElementById('babel_aline')
|
||||
var uglifybtn = document.getElementById('uglify')
|
||||
var uglify_minibtn = document.getElementById('uglify_mini')
|
||||
var txt = document.getElementById('txt')
|
||||
var txt2 = document.getElementById('txt2')
|
||||
|
||||
babel_aline.addEventListener('click', function(e){
|
||||
try{
|
||||
;(txt2||txt).value = muti_process_aline(txt.value)
|
||||
}catch(e){
|
||||
;(txt2||txt).value = e.stack
|
||||
}
|
||||
})
|
||||
|
||||
sojsontn.addEventListener('click', function(e){
|
||||
try{
|
||||
;(txt2||txt).value = muti_process_sojsondefusion(txt.value)
|
||||
|
12566
tools/uglify_es.js
12566
tools/uglify_es.js
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user