In each of my functions, I start with this specific line:
var local = {}
By doing so, it allows me to organize my variables using the following structure:
local.x = 1
local.y = 2
Is there a way to modify all function prototypes to automatically include an empty object named 'local'?