UNPKG

@aws-amplify/core

Version:
10 lines (8 loc) 341 B
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 function urlSafeDecode(hex) { const matchArr = hex.match(/.{2}/g) || []; return matchArr.map(char => String.fromCharCode(parseInt(char, 16))).join(''); } export { urlSafeDecode }; //# sourceMappingURL=urlSafeDecode.mjs.map