Closed gildas-lormeau closed 11 years ago
Fixed an issue related to function hoisting.
Example:
function a() { alert("a1") } if (false) { function a() { alert("a2") } } a(); // will alert "a2"
Thanks for the pull request. This looks like a bug in Joseph Meyer's MD5.js library, but it doesn't look like he has that on Github, so I accepted the change here.
Fixed an issue related to function hoisting.
Example: