UNPKG

create-nova-expo-template

Version:

A template for creating a new React Native app using Expo and TypeScript, with a focus on performance and best practices.

6 lines (4 loc) 192 B
/* eslint-disable @typescript-eslint/no-explicit-any */ const isLastIndex = ({ index, list }: { index: number; list: any[] }) => index === list.length - 1; export default isLastIndex;