UNPKG

206 BPlain TextView Raw
1import { SourceData } from "@aws-sdk/types";
2
3export function isEmptyData(data: SourceData): boolean {
4 if (typeof data === "string") {
5 return data.length === 0;
6 }
7
8 return data.byteLength === 0;
9}