UNPKG

appwrite-utils

Version:

`appwrite-utils` is a comprehensive TypeScript library designed to streamline the development process for Appwrite projects. It provides a suite of utilities and helper functions that facilitate data manipulation, schema management, and seamless integrati

7 lines (6 loc) 183 B
export const areCollectionNamesSame = (a: string, b: string) => { return ( a.toLowerCase().trim().replace(" ", "") === b.toLowerCase().trim().replace(" ", "") ); };