mirror of
https://github.com/hashicorp/vault.git
synced 2026-06-26 17:49:02 -04:00
* license: update headers to IBM Corp. * `make proto` * update offset because source file changed Signed-off-by: Ryan Cragun <me@ryan.ec> Co-authored-by: Ryan Cragun <me@ryan.ec>
15 lines
343 B
JavaScript
15 lines
343 B
JavaScript
/**
|
|
* Copyright IBM Corp. 2016, 2025
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { helper as buildHelper } from '@ember/component/helper';
|
|
|
|
export function stringify([target], { skipFormat }) {
|
|
if (skipFormat) {
|
|
return JSON.stringify(target);
|
|
}
|
|
return JSON.stringify(target, null, 2);
|
|
}
|
|
|
|
export default buildHelper(stringify);
|