5.0.6
- fix bug: some libs may access local vars but prepare it via global object, leading to variable not found issue.
for example, setimmediate.js update setimmediate by:
attachedTo.setImmediate = function() { ... }
however it is used by
setImmediate( ... );
in this case, we have to manually update local variable content.