Files
Fleetbase-Mirror-Repo/console/app/helpers/json-pretty-print.js
2023-10-10 20:43:18 +08:00

6 lines
157 B
JavaScript

import { helper } from '@ember/component/helper';
export default helper(function jsonPrettyPrint([json]) {
return JSON.stringify(json, null, ' ');
});