Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save trycf/50152bbb7b24d018fea2bd6e39a5489f to your computer and use it in GitHub Desktop.
Save trycf/50152bbb7b24d018fea2bd6e39a5489f to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
rc = {
foo : 'bar ',
bar : ' baz'
};
rc.each( function( k, v ) {
rc[ k ] = trim( v );
} );
dump( rc );
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment