Skip to content

Instantly share code, notes, and snippets.

@Kukks
Created April 15, 2016 11:02
Show Gist options
  • Save Kukks/7482dc6cf22dc32129fcbd333a133a2f to your computer and use it in GitHub Desktop.
Save Kukks/7482dc6cf22dc32129fcbd333a133a2f to your computer and use it in GitHub Desktop.
Aurelia stringify value converter
export class StringifyValueConverter {
public toView( value: any ): string {
if ( value ) {
return JSON.stringify(value);
} else {
return "null object";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment