mirror of
https://github.com/fleetbase/fleetbase.git
synced 2025-12-20 06:32:18 +00:00
6 lines
157 B
JavaScript
6 lines
157 B
JavaScript
import { helper } from '@ember/component/helper';
|
|
|
|
export default helper(function jsonPrettyPrint([json]) {
|
|
return JSON.stringify(json, null, ' ');
|
|
});
|