mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 21:21:06 +02:00
13 lines
251 B
JavaScript
13 lines
251 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { helper as buildHelper } from '@ember/component/helper';
|
|
|
|
export function decodeUri(string) {
|
|
return decodeURI(string);
|
|
}
|
|
|
|
export default buildHelper(decodeUri);
|