Friday, 25 June 2021

Obscurify react code in prodoction by automatically changing all the function and variable names

Are there any libs that help obscurify a react build for production?

Something like:

const MyComp = () = > {
 const {propa, propb} = useMyfunc()
 return(...)
}

to

const xyz = () = > {
 const {yxz, zyx} = zzz()
 return(...)
}


from Obscurify react code in prodoction by automatically changing all the function and variable names

No comments:

Post a Comment