adding code snippets for integration

This commit is contained in:
John Yeo
2025-08-03 08:05:30 -07:00
parent 84063ab5ed
commit a9db3f163f
68 changed files with 4081 additions and 351 deletions

View File

@@ -1 +1,2 @@
export const notNullish = (value: any) => value !== null && value !== undefined;
export const nullish = (value: any) => value === null || value === undefined;