mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-03 12:07:54 +00:00
Create KV V2 Ember Engine (#22426)
This commit is contained in:
15
ui/lib/core/addon/helpers/stringify.js
Normal file
15
ui/lib/core/addon/helpers/stringify.js
Normal file
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* Copyright (c) HashiCorp, Inc.
|
||||
* 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);
|
||||
Reference in New Issue
Block a user