UNPKG

@aws-amplify/core

Version:
12 lines (9 loc) 298 B
// 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); }, };