Move Nested Function

  • MoveNested
  • Enterprise

This feature will move the anonymous function out of the statements.

Example code: a.onclick(function(){}); b={onclick:function(){}} Effect : a.onclick(c); b={onclick:d}

With the Flat Transform feature, the function body will be move to a random position of the output code.