@aws-amplify/core
Version:
Core category of aws-amplify
13 lines (11 loc) • 462 B
JavaScript
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
Object.defineProperty(exports, "__esModule", { value: true });
exports.urlSafeDecode = void 0;
function urlSafeDecode(hex) {
const matchArr = hex.match(/.{2}/g) || [];
return matchArr.map(char => String.fromCharCode(parseInt(char, 16))).join('');
}
exports.urlSafeDecode = urlSafeDecode;
//# sourceMappingURL=urlSafeDecode.js.map
;