mirror of
https://github.com/espruino/Espruino.git
synced 2025-12-08 19:06:15 +00:00
7 lines
213 B
JavaScript
7 lines
213 B
JavaScript
// issue with function decls when the last token is right at the end of the line
|
|
|
|
var a=eval("function a() {\n 12345\nssssssss\n}")
|
|
var r=a.toString();
|
|
|
|
result = r.replace(/\s/g,"")=="function(){12345ssssssss}";
|