nypublicradio/ember-hifi

View on GitHub
addon/helpers/json-stringify.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import { helper } from '@ember/component/helper';

export default helper(function jsonStringify(params/*, hash*/) {
  if (!params || !params[0] || params[0] == undefined) {
    return "";
  }
  return JSON.stringify(params[0]);
});