Skip to content

Instantly share code, notes, and snippets.

@nire0510
Created February 29, 2016 11:21
Show Gist options
  • Save nire0510/751b156d954d32569800 to your computer and use it in GitHub Desktop.
Save nire0510/751b156d954d32569800 to your computer and use it in GitHub Desktop.
Ember helper: pretty log of JSON object
import Ember from 'ember';
export function logJson(params/*, hash*/) {
console.log(params[0].toJSON());
}
export default Ember.Helper.helper(logJson);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment