vault/ui/lib/core/addon/helpers/stringify.js

16 lines
342 B
JavaScript
Raw Normal View History

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
import { helper as buildHelper } from '@ember/component/helper';
2018-04-03 10:16:57 -04:00
export function stringify([target], { skipFormat }) {
if (skipFormat) {
return JSON.stringify(target);
}
return JSON.stringify(target, null, 2);
}
export default buildHelper(stringify);