How to check if the running script is encrypted
From a running script I would like to do a check if the script is encrytped or not. This is to seperate behavior between development versions and release versions of a script without having to change variables in the code. So something like:If( !Script is encrypted(),
//Do bit of code for development version
,
//Do bit of code for release version
)
One way is to check if the script starts with...