We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am testing your CFC by throwing it curved balls. eg
s = { a = "abc", b = javaCast('null', 0), c = "123" };
This threw an error at line 277 where this fails: serializeInput( input[ key ], hint );
serializeInput( input[ key ], hint );
I replaced that line with
if ( structKeyExists(input, key) ) { serializeInput( input[ key ], hint ); } else { writeOutput('""'); }
ie output an empty string. BUT... maybe should output writeOutput('"null"'); ????
writeOutput('"null"');
I didn't make a PR because I am not sure I know what I am doing with GitHub and none of the other PRs seem to have been acted on. ;-)
Thanks Ben!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am testing your CFC by throwing it curved balls. eg
This threw an error at line 277 where this fails:
serializeInput( input[ key ], hint );
I replaced that line with
ie output an empty string. BUT... maybe should output
writeOutput('"null"');
????I didn't make a PR because I am not sure I know what I am doing with GitHub and none of the other PRs seem to have been acted on. ;-)
Thanks Ben!
The text was updated successfully, but these errors were encountered: