@aws-amplify/core
Version:
Core category of aws-amplify
11 lines (7 loc) • 328 B
text/typescript
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
import { NonRetryableError } from './NonRetryableError';
export const isNonRetryableError = (obj: any): obj is NonRetryableError => {
const key: keyof NonRetryableError = 'nonRetryable';
return obj && obj[key];
};