UNPKG

appwrite-utils

Version:

`appwrite-utils` is a comprehensive TypeScript library designed to streamline the development process for Appwrite projects. Version 1.0.0 aligns with the YAML-first architecture of `appwrite-utils-cli`, providing enhanced integration capabilities and rob

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