Skip to content

Instantly share code, notes, and snippets.

@atsu85
Created November 22, 2015 09:10
Show Gist options
  • Save atsu85/b6bdf1892f9d682e9dff to your computer and use it in GitHub Desktop.
Save atsu85/b6bdf1892f9d682e9dff to your computer and use it in GitHub Desktop.
import {valueConverter} from "aurelia-binding";
/** useful for debugging */
@valueConverter('json')
export class ToJsonValueConverter {
toView(value: any) {
return value ? JSON.stringify(value) : value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment