UNPKG

522 BJavaScriptView Raw
1// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2// SPDX-License-Identifier: Apache-2.0
3export function urlSafeEncode(str) {
4 return str
5 .split('')
6 .map(function (char) {
7 return char
8 .charCodeAt(0)
9 .toString(16)
10 .padStart(2, '0');
11 })
12 .join('');
13}
14export function urlSafeDecode(hex) {
15 return hex
16 .match(/.{2}/g)
17 .map(function (char) { return String.fromCharCode(parseInt(char, 16)); })
18 .join('');
19}