Can I trust Function.prototype.toString
to provide a valid javascript function string for user-defined functions?
Do any popular javascript engines differ in how they represent function objects as strings?
I came across this question, but it doesn't seem to address my concerns. I'm more interested in ensuring that the function body remains intact, even if formatting may vary between implementations...
There's also a related question, but it didn't fully answer what I'm looking for.