Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RGF does not work on Arrow Functions or Function expressions #64

Closed
MichaelXF opened this issue May 7, 2023 · 1 comment
Closed

RGF does not work on Arrow Functions or Function expressions #64

MichaelXF opened this issue May 7, 2023 · 1 comment
Labels
bug Something isn't working

Comments

@MichaelXF
Copy link
Owner

Config and Small code sample

Config:

{
  target: "node",
  rgf: true,
}

Code:

function double1(num){  // Function declaration works
  return num*2;
}

var double2 = function(num){ // Function expression breaks
  return num*2;
}

var double3 = (num)=>{ // Arrow function breaks
  return num*2;
}

console.log(double1(10));
console.log(double2(10));
console.log(double3(10));

Expected behavior

20
20
20

Actual behavior

20
NaN
NaN
@MichaelXF MichaelXF added the bug Something isn't working label May 7, 2023
@MichaelXF
Copy link
Owner Author

Fixed in 1.5.6

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant