webcrack icon indicating copy to clipboard operation
webcrack copied to clipboard

add smart-rename rule from wakaru

Open milahu opened this issue 4 months ago • 1 comments

currently, webcrack produces code like

let { sin: k, cos: v, abs: w, log: N, floor: U, PI: A } = Math;

with the smart-rename rule of wakaru this becomes

let { sin, cos, abs, log, floor, PI } = Math;

milahu avatar Feb 17 '24 14:02 milahu