UNPKG

@aws-amplify/core

Version:
20 lines (19 loc) 522 B
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 export function urlSafeEncode(str) { return str .split('') .map(function (char) { return char .charCodeAt(0) .toString(16) .padStart(2, '0'); }) .join(''); } export function urlSafeDecode(hex) { return hex .match(/.{2}/g) .map(function (char) { return String.fromCharCode(parseInt(char, 16)); }) .join(''); }