Skip to content

5.0.6

Choose a tag to compare

@zbryikt zbryikt released this 09 Jan 08:32
· 64 commits to master since this release
  • 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.