Sign in
third-party-mirror
/
hashicorp
/
vault
/
582d46ed083b261003e36565a870f396144c4826
/
.
/
v1.14.5
/
ui
/
app
/
helpers
/
decode-uri.js
blob: be4f471770ab4d4022a1a81181597549e33c57a6 [
file
] [
log
] [
blame
]
/**
* 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
);