UNPKG

@aws-amplify/core

Version:
10 lines (7 loc) 272 B
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import { ItemToAdd } from './types'; export const getAddItemBytesSize = ({ content, timestamp, }: ItemToAdd): number => content.length + timestamp.length + 8;