@aws-amplify/core
Version:
Core category of aws-amplify
12 lines (9 loc) • 298 B
text/typescript
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
import { getAtob } from '../../globalHelpers';
import { Base64Decoder } from '../types';
export const base64Decoder: Base64Decoder = {
convert(input) {
return getAtob()(input);
},
};