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>
14 lines
371 B
JavaScript
14 lines
371 B
JavaScript
/**
|
|
* Copyright IBM Corp. 2016, 2025
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { helper as buildHelper } from '@ember/component/helper';
|
|
|
|
export function jsonify([target]) {
|
|
// aws secret engine needs to be able to send an empty json value on the field policy_document
|
|
if (!target) return;
|
|
return JSON.parse(target);
|
|
}
|
|
|
|
export default buildHelper(jsonify);
|